From 84b7b64ec0cdce6b5e12683fce948e3676221ac9 Mon Sep 17 00:00:00 2001 From: Fusion Date: Sun, 24 May 2026 23:20:51 +0200 Subject: [PATCH] fix: change mobile terminal wrapper from grid to flexbox Grid layout was not properly sizing the content area, causing 0 height. Flexbox with flex: 1 on content area ensures proper filling. --- apps/web/src/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/styles.css b/apps/web/src/styles.css index d0633fe..a912705 100644 --- a/apps/web/src/styles.css +++ b/apps/web/src/styles.css @@ -3122,8 +3122,8 @@ a.nav-item, } .mobile-terminal-wrapper { - display: grid; - grid-template-rows: auto 1fr auto; + display: flex; + flex-direction: column; height: 100%; min-height: 0; background: #1e1e1e;