fix(ui): reduce window height and tighten layout spacing
This commit is contained in:
parent
003bf23402
commit
ca00ddeb53
2 changed files with 4 additions and 4 deletions
|
|
@ -15,9 +15,9 @@
|
||||||
{
|
{
|
||||||
"title": "Handy",
|
"title": "Handy",
|
||||||
"width": 540,
|
"width": 540,
|
||||||
"height": 750,
|
"height": 720,
|
||||||
"minWidth": 540,
|
"minWidth": 540,
|
||||||
"minHeight": 750,
|
"minHeight": 720,
|
||||||
"resizable": true,
|
"resizable": true,
|
||||||
"maximizable": false
|
"maximizable": false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ function App() {
|
||||||
if (showOnboarding) {
|
if (showOnboarding) {
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen flex flex-col w-full">
|
<div className="min-h-screen flex flex-col w-full">
|
||||||
<div className="flex flex-col items-center pt-6 gap-8 px-4 flex-1">
|
<div className="flex flex-col items-center p-4 gap-4 flex-1">
|
||||||
<HandyTextLogo width={200} />
|
<HandyTextLogo width={200} />
|
||||||
<Onboarding onModelSelected={handleModelSelected} />
|
<Onboarding onModelSelected={handleModelSelected} />
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -45,7 +45,7 @@ function App() {
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen flex flex-col w-full">
|
<div className="min-h-screen flex flex-col w-full">
|
||||||
<Toaster />
|
<Toaster />
|
||||||
<div className="flex flex-col items-center pt-6 gap-8 px-4 flex-1">
|
<div className="flex flex-col items-center p-4 gap-4 flex-1">
|
||||||
<HandyTextLogo width={200} />
|
<HandyTextLogo width={200} />
|
||||||
<AccessibilityPermissions />
|
<AccessibilityPermissions />
|
||||||
<Settings />
|
<Settings />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue