stats page layout tweaks

This commit is contained in:
2026-03-07 13:13:09 +11:00
parent 1194d46613
commit 04389970ac
2 changed files with 29 additions and 15 deletions

View File

@@ -720,6 +720,9 @@
.items-start {
align-items: flex-start;
}
.items-stretch {
align-items: stretch;
}
.justify-between {
justify-content: space-between;
}
@@ -2316,6 +2319,11 @@
display: flex;
}
}
.lg\:w-auto {
@media (width >= 64rem) {
width: auto;
}
}
.lg\:grid-cols-2 {
@media (width >= 64rem) {
grid-template-columns: repeat(2, minmax(0, 1fr));