Hide all the avatars but the first on small screens

This commit is contained in:
LemonBoy 2018-08-21 23:59:42 +02:00
commit 30dc09f453

View file

@ -253,6 +253,13 @@ $threads-meta-color: #545d70;
}
// Hide all the avatars but the first on small screens.
@media screen and (max-width: 600px) {
#threads-list a:not(:first-child) > .avatar {
display: none;
}
}
.posts, .about {
@extend .grid-md;
@extend .container;