Fix: Wurfbörse auto-fill Grid — 1 Karte füllt volle Breite, keine fixen Spalten mehr (SW by-v907)

This commit is contained in:
rene 2026-05-13 19:35:05 +02:00
parent cf1ed0fdbc
commit 0399282e4c
2 changed files with 4 additions and 12 deletions

View file

@ -6977,18 +6977,10 @@ svg.empty-state-icon {
.wb-cards {
display: grid;
grid-template-columns: 1fr;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: var(--space-4);
}
@media (min-width: 768px) {
.wb-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
.wb-cards { grid-template-columns: repeat(3, 1fr); }
}
.wb-card {
background: var(--c-surface);
border: 1px solid var(--c-border-light);