From cf1c10495b57013a39703c04caf423f59ead3455 Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Mon, 30 Mar 2026 13:07:43 -0400 Subject: [PATCH] fix: MonitorBar squeezed by terminal container height: 100% .terminal-container had both height: 100% (CSS) and flex-1 (Tailwind). In the flex-col parent, height: 100% forced the terminal to claim the full parent height, squeezing MonitorBar below its h-6 minimum. Fix: replaced height: 100% with min-height: 0. flex-1 handles sizing, min-height: 0 allows proper flex shrinking so MonitorBar gets its full 24px allocation. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/assets/css/terminal.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assets/css/terminal.css b/src/assets/css/terminal.css index 1733b22..97d5cf5 100644 --- a/src/assets/css/terminal.css +++ b/src/assets/css/terminal.css @@ -2,7 +2,7 @@ .terminal-container { width: 100%; - height: 100%; + min-height: 0; position: relative; overflow: hidden; background: var(--wraith-bg-primary);