Nightly: Sounds-Listing auf echte lineare Liste umgestellt (vertikale Anordnung, keine Spalten)

This commit is contained in:
vibe-bot 2025-08-09 02:25:17 +02:00
parent 517182b778
commit 8ae88be5e6

View file

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