From 31b70140d69717c2ce5c539f327c69f70d0ace90 Mon Sep 17 00:00:00 2001 From: James Smith Date: Mon, 29 Dec 2025 22:21:57 +0000 Subject: [PATCH] Fix ground track map to fill its container Use flexbox to make map expand to fill available space in container --- templates/index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 09f04f9..dd42b8a 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1396,10 +1396,13 @@ border-radius: 8px; padding: 15px; min-height: 320px; + display: flex; + flex-direction: column; } .ground-track-cell #groundTrackMap { - height: 240px; + flex: 1; + min-height: 200px; } .countdown-cell {