added stat leaderboards

This commit is contained in:
2026-03-06 21:25:05 +11:00
parent a472314474
commit ce659f7d56
4 changed files with 464 additions and 7 deletions

View File

@@ -2189,11 +2189,21 @@
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
.lg\:flex-row {
@media (width >= 64rem) {
flex-direction: row;
}
}
.lg\:items-end {
@media (width >= 64rem) {
align-items: flex-end;
}
}
.lg\:items-start {
@media (width >= 64rem) {
align-items: flex-start;
}
}
.lg\:justify-between {
@media (width >= 64rem) {
justify-content: space-between;