chore: clean up about media query

This commit is contained in:
Cory Dransfeldt 2024-01-26 16:40:30 -08:00
parent 9dffcced04
commit c1e5285a30
No known key found for this signature in database

View file

@ -1,11 +1,15 @@
:root {
--avatar-size: 16rem;
}
.avatar__wrapper {
width: 100%;
margin-bottom: 1.5rem;
}
.avatar__wrapper .avatar__wrapper--interior {
width: 16rem;
height: 16rem;
width: var(--avatar-size);
height: var(--avatar-size);
border: 1px solid var(--accent-color);
border-radius: var(--rounded-full);
display: flex;
@ -25,8 +29,7 @@
}
@media screen and (min-width: 768px) {
.avatar__wrapper .avatar__wrapper--interior {
width: 24rem;
height: 24rem;
:root {
--avatar-size: 24rem;
}
}