fix(ui): ensure proper flexbox layout by adding min-height constraints

This commit is contained in:
2025-10-01 11:46:02 -04:00
parent 356a8aacbb
commit c5cb6f29b6
2 changed files with 229 additions and 1 deletions

View File

@@ -201,6 +201,7 @@
flex: 1;
display: flex;
flex-direction: column;
min-height: 0;
}
.window-body {
@@ -208,12 +209,13 @@
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
min-height: 0;
}
.table-container {
flex: 1;
overflow-y: auto;
min-height: 0;
}
table {