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.
This commit is contained in:
Fusion
2026-05-24 23:20:51 +02:00
parent 9e88acaa36
commit 84b7b64ec0
+2 -2
View File
@@ -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;