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",
|
||||
"width": 540,
|
||||
"height": 750,
|
||||
"height": 720,
|
||||
"minWidth": 540,
|
||||
"minHeight": 750,
|
||||
"minHeight": 720,
|
||||
"resizable": true,
|
||||
"maximizable": false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ function App() {
|
|||
if (showOnboarding) {
|
||||
return (
|
||||
<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} />
|
||||
<Onboarding onModelSelected={handleModelSelected} />
|
||||
</div>
|
||||
|
|
@ -45,7 +45,7 @@ function App() {
|
|||
return (
|
||||
<div className="min-h-screen flex flex-col w-full">
|
||||
<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} />
|
||||
<AccessibilityPermissions />
|
||||
<Settings />
|
||||
|
|
|
|||
Loading…
Reference in a new issue