From 86fa6326e98d07aa080f61406b437789d405a8c7 Mon Sep 17 00:00:00 2001 From: Smittix Date: Mon, 2 Mar 2026 17:30:27 +0000 Subject: [PATCH] fix: prevent radiosonde strip from stretching in flex column layout Add flex-shrink: 0 so the strip holds its intrinsic height instead of being distorted by the parent flex container. Co-Authored-By: Claude Opus 4.6 --- static/css/modes/radiosonde.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/css/modes/radiosonde.css b/static/css/modes/radiosonde.css index 7b7570b..f254582 100644 --- a/static/css/modes/radiosonde.css +++ b/static/css/modes/radiosonde.css @@ -145,8 +145,9 @@ border: 1px solid var(--border-color); border-radius: 6px; padding: 6px 12px; - margin-bottom: 10px; + margin-bottom: 8px; overflow-x: auto; + flex-shrink: 0; } .radiosonde-strip-inner { display: flex;