Reduce height of media query to hide avatar/bio

An additional selector was provided to make the bio only hide on the timeline and not on the user page itself.
This commit is contained in:
Anthony Bellew 2017-01-03 11:55:36 -07:00 committed by GitHub
parent de154dbd5d
commit 1fcb807d91

View file

@ -147,8 +147,8 @@
}
}
@media screen and (max-height: 800px) {
.account__header__avatar, .account__header__content {
@media screen and (max-height: 480px) {
.account__header__avatar, .account__header .account__header__content {
display: none;
}
}