Fix homepage avatar height (#23)

This commit is contained in:
Avijit Gupta
2021-07-05 13:13:24 +02:00
committed by GitHub
parent 242f8526c6
commit 272c4a471e

View File

@@ -210,22 +210,27 @@ blockquote {
/* Avatar sizes (default is M) - XS, S, M, L, XL */ /* Avatar sizes (default is M) - XS, S, M, L, XL */
.home-about .avatar img.size-xs { .home-about .avatar img.size-xs {
height: 7rem;
width: 7rem; width: 7rem;
} }
.home-about .avatar img.size-s { .home-about .avatar img.size-s {
height: 9rem;
width: 9rem; width: 9rem;
} }
.home-about .avatar img { .home-about .avatar img {
height: 11rem;
width: 11rem; width: 11rem;
} }
.home-about .avatar img.size-l { .home-about .avatar img.size-l {
height: 13rem;
width: 13rem; width: 13rem;
} }
.home-about .avatar img.size-xl { .home-about .avatar img.size-xl {
height: 15rem;
width: 15rem; width: 15rem;
} }