From 7981b408dbe245c71b90e199bdf62d8baf57f9b0 Mon Sep 17 00:00:00 2001 From: Bryan1029384756 <23323626+Bryan1029384756@users.noreply.github.com> Date: Sat, 21 Feb 2026 15:54:16 -0600 Subject: [PATCH] Fix titlebar for web --- packages/shared/src/index.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/shared/src/index.css b/packages/shared/src/index.css index f6bb7b5..180ff13 100644 --- a/packages/shared/src/index.css +++ b/packages/shared/src/index.css @@ -227,10 +227,17 @@ body { color: var(--interactive-active); } +#root { + display: flex; + flex-direction: column; + height: 100vh; +} + /* Chat Area */ .app-container { display: flex; - height: calc(100vh - 32px); + flex: 1; + min-height: 0; width: 100vw; overflow: hidden; }