fix: use CSS Grid for mobile terminal layout to fix 0 height issue

This commit is contained in:
Fusion
2026-05-24 23:07:13 +02:00
parent 21285498ae
commit 245d79569e
+5 -8
View File
@@ -3117,17 +3117,14 @@ a.nav-item,
height: 100vh; height: 100vh;
height: 100dvh; height: 100dvh;
overflow: hidden; overflow: hidden;
} display: flex;
flex-direction: column;
.shell.mobile-terminal-shell > * {
flex: 1;
min-height: 0;
} }
.mobile-terminal-wrapper { .mobile-terminal-wrapper {
display: flex; display: grid;
flex-direction: column; grid-template-rows: auto 1fr auto;
flex: 1; height: 100%;
min-height: 0; min-height: 0;
background: #1e1e1e; background: #1e1e1e;
position: relative; position: relative;