From 675a3cdbfb8e9b2e6d74956bed65e7570e8538df Mon Sep 17 00:00:00 2001 From: Smittix Date: Wed, 4 Feb 2026 20:28:02 +0000 Subject: [PATCH] Fix controls bar alignment in dashboard pages Change align-items from center to stretch so control groups of varying heights align at top and bottom instead of floating. Co-Authored-By: Claude Opus 4.5 --- static/css/adsb_dashboard.css | 2 +- static/css/ais_dashboard.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/css/adsb_dashboard.css b/static/css/adsb_dashboard.css index b05d5f1..6061768 100644 --- a/static/css/adsb_dashboard.css +++ b/static/css/adsb_dashboard.css @@ -755,7 +755,7 @@ body { grid-column: 1 / -1; grid-row: 2; display: flex; - align-items: center; + align-items: stretch; flex-wrap: nowrap; gap: 8px; padding: 8px 15px; diff --git a/static/css/ais_dashboard.css b/static/css/ais_dashboard.css index b1eb9f3..1e0d58c 100644 --- a/static/css/ais_dashboard.css +++ b/static/css/ais_dashboard.css @@ -670,7 +670,7 @@ body { grid-column: 1 / -1; grid-row: 2; display: flex; - align-items: center; + align-items: stretch; flex-wrap: nowrap; gap: 8px; padding: 8px 15px;