From 44428c25176e45bfa95d8bbcabbdfea9c53eed8a Mon Sep 17 00:00:00 2001 From: James Smith Date: Fri, 20 Mar 2026 00:00:47 +0000 Subject: [PATCH] Fix sky view gap: don't stretch polar panel beyond its content MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The command-rail's 1fr last row caused the sky view panel to fill all remaining column height (driven by the tall mission-drawer), showing a large empty bordered space below the pass data strip. Switch to all-auto rows with align-content: start so each panel is exactly as tall as its content — the open background below the column looks intentional rather than a panel with dead space inside it. Co-Authored-By: Claude Sonnet 4.6 --- static/css/satellite_dashboard.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/static/css/satellite_dashboard.css b/static/css/satellite_dashboard.css index e75a666..4010989 100644 --- a/static/css/satellite_dashboard.css +++ b/static/css/satellite_dashboard.css @@ -292,9 +292,10 @@ body { .command-rail { display: grid; - grid-template-rows: auto auto auto 1fr; + grid-template-rows: auto auto auto auto; gap: 6px; min-width: 0; + align-content: start; } .data-grid { @@ -735,21 +736,18 @@ body { /* Polar plot */ .polar-container { - min-height: 200px; - max-height: min(55vh, 520px); display: flex; flex-direction: column; } .polar-container .panel-content { - flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 10px; padding: 8px; - min-height: 0; + height: auto; overflow: hidden; } @@ -1614,7 +1612,8 @@ body { grid-column: 2; grid-row: 2; grid-template-columns: repeat(2, minmax(0, 1fr)); - grid-template-rows: auto 1fr; + grid-template-rows: auto auto; + align-content: start; } }