From 28f172a6430aff6a4ae60ddf357871a894ec60c2 Mon Sep 17 00:00:00 2001 From: James Smith Date: Wed, 18 Mar 2026 23:20:53 +0000 Subject: [PATCH] Lock satellite sidebar panel heights --- static/css/satellite_dashboard.css | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/static/css/satellite_dashboard.css b/static/css/satellite_dashboard.css index 96fd2de..d7c1460 100644 --- a/static/css/satellite_dashboard.css +++ b/static/css/satellite_dashboard.css @@ -519,12 +519,21 @@ body { .transmitters-panel, .packets-panel { - flex-shrink: 0; - min-height: 120px; + flex: 0 0 auto; display: flex; flex-direction: column; } +.transmitters-panel { + min-height: 190px; + max-height: 190px; +} + +.packets-panel { + min-height: 170px; + max-height: 170px; +} + .transmitters-panel .panel-content, .packets-panel .panel-content { height: auto; @@ -561,14 +570,16 @@ body { /* Pass list */ .pass-list { flex: 0 0 auto; - min-height: 180px; + min-height: 220px; + max-height: 220px; display: flex; flex-direction: column; } .gs-panel { flex: 0 0 auto; - min-height: 240px; + min-height: 300px; + max-height: 300px; display: flex; flex-direction: column; }