Fix titlebar for web

This commit is contained in:
Bryan1029384756
2026-02-21 15:54:16 -06:00
parent 948f8c7aa7
commit 7981b408db

View File

@@ -227,10 +227,17 @@ body {
color: var(--interactive-active); color: var(--interactive-active);
} }
#root {
display: flex;
flex-direction: column;
height: 100vh;
}
/* Chat Area */ /* Chat Area */
.app-container { .app-container {
display: flex; display: flex;
height: calc(100vh - 32px); flex: 1;
min-height: 0;
width: 100vw; width: 100vw;
overflow: hidden; overflow: hidden;
} }