Let hero stats cards auto-expand to fit long values.
Deploy Ladill Servers / deploy (push) Successful in 23s

Replace fixed mobile widths and equal grid columns with content-sized cards so figures like GHS balances and storage sizes are never clipped.
This commit is contained in:
isaacclad
2026-07-24 14:53:49 +00:00
parent e5e125ec23
commit e1ba05edae
2 changed files with 10 additions and 12 deletions
+8 -2
View File
@@ -70,12 +70,18 @@
}
.mobile-stats-card {
width: calc(66.666667% - 0.5rem);
width: max-content;
min-width: 9rem;
max-width: none;
box-sizing: border-box;
}
@media (min-width: 640px) {
.mobile-stats-card {
width: auto;
width: max-content;
min-width: 9rem;
max-width: none;
flex: 1 1 auto;
}
}