Shrink avatar when narrow screen

This commit is contained in:
asonix 2020-05-21 18:22:39 -05:00
parent a45c204a5b
commit 99359cc653

View file

@ -214,3 +214,15 @@ footer {
border-radius: 0;
}
}
@media(max-width: 500px) {
.avatar {
width: 60px;
height: 60px;
margin: 16px 24px;
img {
border-radius: 30px;
}
}
}