diff options
| author | Adam <[email protected]> | 2025-12-12 11:11:14 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-12-12 11:11:17 -0600 |
| commit | 2da527aaa606c7ad7ffb1a5b0276d69f8dd0e389 (patch) | |
| tree | b7065ffce849222193160bd19a8210a7ff505583 | |
| parent | 0303eb0cc1fb607387bfc1e89af0cf55b1297055 (diff) | |
| download | opencode-2da527aaa606c7ad7ffb1a5b0276d69f8dd0e389.tar.gz opencode-2da527aaa606c7ad7ffb1a5b0276d69f8dd0e389.zip | |
fix: desktop layout
| -rw-r--r-- | packages/desktop/src/pages/layout.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/desktop/src/pages/layout.tsx b/packages/desktop/src/pages/layout.tsx index 41b1977c8..7da920c5f 100644 --- a/packages/desktop/src/pages/layout.tsx +++ b/packages/desktop/src/pages/layout.tsx @@ -423,9 +423,9 @@ export default function Layout(props: ParentProps) { } return ( - <div class="relative flex-1 flex flex-col"> + <div class="relative flex-1 min-h-0 flex flex-col"> <Header navigateToProject={navigateToProject} navigateToSession={navigateToSession} /> - <div class="h-[calc(100%-3rem)] flex"> + <div class="flex-1 min-h-0 flex"> <div classList={{ "relative @container w-12 pb-5 shrink-0 bg-background-base": true, |
