From ee9bd9bbb2de258b77a2333a5a2800e7b2815e11 Mon Sep 17 00:00:00 2001 From: James Smith Date: Wed, 18 Mar 2026 14:50:30 +0000 Subject: [PATCH] Fix transmitters and decoded packets panels hidden in satellite dashboard sidebar --- static/css/satellite_dashboard.css | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/static/css/satellite_dashboard.css b/static/css/satellite_dashboard.css index de204a3..4702b0d 100644 --- a/static/css/satellite_dashboard.css +++ b/static/css/satellite_dashboard.css @@ -366,7 +366,8 @@ body { display: flex; flex-direction: column; border-left: 1px solid rgba(0, 212, 255, 0.2); - overflow: hidden; + overflow-y: auto; + overflow-x: hidden; } /* Satellite selector at top of sidebar */ @@ -516,6 +517,20 @@ body { flex-shrink: 0; } +.transmitters-panel, +.packets-panel { + flex-shrink: 0; + min-height: 120px; + display: flex; + flex-direction: column; +} + +.transmitters-panel .panel-content, +.packets-panel .panel-content { + height: auto; + overflow-y: auto; +} + .telemetry-rows { display: grid; grid-template-columns: 1fr 1fr;