Nightly: Sounds wieder organisch wie Tabs nebeneinander (flex-wrap, auto-breite Karten)

This commit is contained in:
vibe-bot 2025-08-09 02:35:14 +02:00
parent 17b3737176
commit 8c7b1fbc31

View file

@ -539,13 +539,17 @@ header p {
/* Lineares, responsives Flow-Layout für Sounds */ /* Lineares, responsives Flow-Layout für Sounds */
.sounds-flow { .sounds-flow {
display: flex; display: flex;
flex-direction: column; flex-wrap: wrap;
gap: 8px; align-items: flex-start;
gap: 12px;
} }
.sounds-flow .sound-wrap { .sounds-flow .sound-wrap {
width: 100%; position: relative;
flex: 0 0 auto;
} }
.sound-wrap { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; } /* Kartenbreite an Tabs angelehnt */
.sounds-flow .sound-btn { min-width: 180px; }
.sound-wrap { position: relative; display: block; }
.sound-wrap.row .sound { width: 100%; } .sound-wrap.row .sound { width: 100%; }
.row-check { width: 18px; height: 18px; accent-color: #60a5fa; } .row-check { width: 18px; height: 18px; accent-color: #60a5fa; }
.select-check { .select-check {