From c81de4eeccdbfc7bebad28c272f56310bb3f8405 Mon Sep 17 00:00:00 2001 From: Smittix Date: Wed, 4 Feb 2026 20:53:59 +0000 Subject: [PATCH] Use flex-end alignment for controls bar bottom alignment Change from stretch to flex-end to ensure control group bottom edges stay aligned regardless of varying heights. 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 6061768..7305457 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: stretch; + align-items: flex-end; flex-wrap: nowrap; gap: 8px; padding: 8px 15px; diff --git a/static/css/ais_dashboard.css b/static/css/ais_dashboard.css index 1e0d58c..e1d6eb7 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: stretch; + align-items: flex-end; flex-wrap: nowrap; gap: 8px; padding: 8px 15px;