Fix: Admin Stats-Grid 2 Spalten auf Mobile, SQL-Code umbrechend

This commit is contained in:
rene 2026-04-17 23:29:40 +02:00
parent bfdf6ebfae
commit cfdb3fbc19
3 changed files with 17 additions and 5 deletions

View file

@ -4790,3 +4790,16 @@ textarea.form-control {
flex-basis: 100%;
}
}
.adm-stats-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--space-3);
margin-bottom: var(--space-5);
}
@media (min-width: 480px) {
.adm-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
.adm-stats-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}