chore: group media queries with rules

This commit is contained in:
Cory Dransfeldt 2024-09-11 15:21:40 -07:00
parent 6d82c73e2d
commit b178203a09
No known key found for this signature in database
13 changed files with 219 additions and 197 deletions

View file

@ -1,5 +1,9 @@
:root {
--avatar-size: 16rem;
@media screen and (min-width: 768px) {
--avatar-size: 24rem;
}
}
.avatar-wrapper {
@ -16,10 +20,4 @@
image-rendering: pixelated;
}
}
}
@media screen and (min-width: 768px) {
:root {
--avatar-size: 24rem;
}
}