fix: bound sentinel dashboard panel heights

This commit is contained in:
Codex
2026-06-28 09:06:43 +00:00
parent 377e07c5a4
commit b57421560d
2 changed files with 66 additions and 5 deletions
@@ -549,11 +549,18 @@ select {
display: grid;
grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.55fr);
gap: 10px;
align-items: stretch;
flex: 0 0 auto;
min-height: clamp(520px, calc(100dvh - 360px), 760px);
height: 80dvh;
max-height: 80dvh;
min-height: 0;
overflow: visible;
}
.workspace-grid > .pane {
height: 100%;
}
.pane {
position: relative;
isolation: isolate;
@@ -620,8 +627,9 @@ select {
.checks-panel {
flex: 0 0 auto;
max-height: none;
min-height: clamp(440px, 62dvh, 760px);
height: 80dvh;
max-height: 80dvh;
min-height: 0;
}
.checks-panel .filter-row select {
@@ -864,15 +872,23 @@ pre {
}
.workspace-grid {
height: auto;
max-height: none;
min-height: 0;
overflow: visible;
}
.workspace-grid > .pane {
height: auto;
}
.pane {
max-height: 72dvh;
max-height: 80dvh;
}
.checks-panel {
max-height: none;
height: 80dvh;
max-height: 80dvh;
}
.status-strip,