From b26ce4f56f7c289b1a9d932ff90b31c363fd8ea4 Mon Sep 17 00:00:00 2001 From: James Smith Date: Fri, 20 Mar 2026 00:08:07 +0000 Subject: [PATCH] Balance column heights to eliminate sky view gap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precise calculation showed mission-drawer (~1100px) was 213px taller than command-rail content (~887px), leaving 213px of empty background at the bottom of the right column. Three targeted reductions to mission-drawer height (~234px total): - drawer-actions: stacked 1-column → 3-column row (-76px) - drawer-list: max-height 240px → 180px (-40px) - drawer-info-grid: 1-column → 2-column for Quick Info (-118px) Mission-drawer drops to ~866px, command-rail (~887px) now drives the primary-layout row height — gap closes. Co-Authored-By: Claude Sonnet 4.6 --- static/css/satellite_dashboard.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/static/css/satellite_dashboard.css b/static/css/satellite_dashboard.css index 4010989..5302166 100644 --- a/static/css/satellite_dashboard.css +++ b/static/css/satellite_dashboard.css @@ -374,8 +374,8 @@ body { .drawer-actions { display: grid; - grid-template-columns: 1fr; - gap: 8px; + grid-template-columns: repeat(3, 1fr); + gap: 6px; } .drawer-action-btn { @@ -449,7 +449,7 @@ body { .drawer-list { min-height: 0; - max-height: 240px; + max-height: 180px; overflow-y: auto; } @@ -552,8 +552,8 @@ body { .drawer-info-grid { display: grid; - grid-template-columns: 1fr; - gap: 8px; + grid-template-columns: repeat(2, 1fr); + gap: 6px; } .drawer-info-card {