fix(ui): reduce window height and tighten layout spacing

This commit is contained in:
Vlad Gerasimov 2025-08-08 17:51:57 +04:00
parent 003bf23402
commit ca00ddeb53
2 changed files with 4 additions and 4 deletions

View file

@ -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
} }

View file

@ -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 />