chore: clean up about media query
This commit is contained in:
parent
9dffcced04
commit
c1e5285a30
1 changed files with 8 additions and 5 deletions
|
@ -1,11 +1,15 @@
|
||||||
|
:root {
|
||||||
|
--avatar-size: 16rem;
|
||||||
|
}
|
||||||
|
|
||||||
.avatar__wrapper {
|
.avatar__wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar__wrapper .avatar__wrapper--interior {
|
.avatar__wrapper .avatar__wrapper--interior {
|
||||||
width: 16rem;
|
width: var(--avatar-size);
|
||||||
height: 16rem;
|
height: var(--avatar-size);
|
||||||
border: 1px solid var(--accent-color);
|
border: 1px solid var(--accent-color);
|
||||||
border-radius: var(--rounded-full);
|
border-radius: var(--rounded-full);
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -25,8 +29,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
.avatar__wrapper .avatar__wrapper--interior {
|
:root {
|
||||||
width: 24rem;
|
--avatar-size: 24rem;
|
||||||
height: 24rem;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in a new issue