summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'packages/desktop/src/pages')
-rw-r--r--packages/desktop/src/pages/index.tsx9
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/desktop/src/pages/index.tsx b/packages/desktop/src/pages/index.tsx
index f344830a4..54f6ff83b 100644
--- a/packages/desktop/src/pages/index.tsx
+++ b/packages/desktop/src/pages/index.tsx
@@ -214,9 +214,10 @@ export default function Page() {
}
return (
- <div class="relative">
- <div class="h-screen flex">
- <div class="shrink-0 w-56">
+ <div class="relative h-screen flex flex-col">
+ <header class="h-10 shrink-0 bg-background-panel"></header>
+ <main class="h-[calc(100vh-2.5rem)] flex">
+ <div class="shrink-0 w-64">
<SessionList />
</div>
<div class="grow w-full min-w-0 overflow-y-auto flex justify-center">
@@ -342,7 +343,7 @@ export default function Page() {
</Show>
</div>
</div>
- </div>
+ </main>
<Show when={store.modelSelectOpen}>
<SelectDialog
key={(x) => `${x.provider.id}:${x.id}`}