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:
@@ -3122,8 +3122,8 @@ a.nav-item,
|
|||||||
}
|
}
|
||||||
|
|
||||||
.mobile-terminal-wrapper {
|
.mobile-terminal-wrapper {
|
||||||
display: grid;
|
display: flex;
|
||||||
grid-template-rows: auto 1fr auto;
|
flex-direction: column;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
background: #1e1e1e;
|
background: #1e1e1e;
|
||||||
|
|||||||
Reference in New Issue
Block a user