Fix: Admin Stats-Grid 2 Spalten auf Mobile, SQL-Code umbrechend
This commit is contained in:
parent
bfdf6ebfae
commit
cfdb3fbc19
3 changed files with 17 additions and 5 deletions
|
|
@ -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)); }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue