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 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-03-02 17:30:27 +00:00
parent be70d2e43b
commit 86fa6326e9

View File

@@ -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;