fix: center settings page in full viewport
Use flex-1 so settings fills #root flex container, then flex items-center justify-center to center the form card. Also update <title> to "Honcho UI".
This commit is contained in:
@@ -4,7 +4,8 @@
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>honcho-ui-scaffold</title>
|
||||
<title>Honcho UI</title>
|
||||
<meta name="description" content="Frontend for self-hosted Honcho instances — browse memories, chat with memory context" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
||||
@@ -12,7 +12,7 @@ function SettingsPage() {
|
||||
|
||||
return (
|
||||
<div
|
||||
className="min-h-screen flex items-center justify-center p-4"
|
||||
className="flex-1 flex items-center justify-center p-4 overflow-auto"
|
||||
style={{ background: "var(--bg)" }}
|
||||
>
|
||||
<motion.div
|
||||
|
||||
Reference in New Issue
Block a user