From 8ae88be5e668e5c78b0355d9c483c6b9deaafbc0 Mon Sep 17 00:00:00 2001 From: vibe-bot Date: Sat, 9 Aug 2025 02:25:17 +0200 Subject: [PATCH] Nightly: Sounds-Listing auf echte lineare Liste umgestellt (vertikale Anordnung, keine Spalten) --- web/src/styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/styles.css b/web/src/styles.css index c09bc3a..fdf7055 100644 --- a/web/src/styles.css +++ b/web/src/styles.css @@ -536,11 +536,11 @@ header p { /* Lineares, responsives Flow-Layout für Sounds */ .sounds-flow { display: flex; - flex-wrap: wrap; - gap: 14px; + flex-direction: column; + gap: 8px; } .sounds-flow .sound-wrap { - flex: 0 1 220px; /* Basisbreite wie zuvor im Grid */ + width: 100%; } .sound-wrap { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; } .sound-wrap.row .sound { width: 100%; }