From: Anthony Bellew Date: Tue, 3 Jan 2017 18:55:36 +0000 (-0700) Subject: Reduce height of media query to hide avatar/bio X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=1fcb807d91a6e36f2e2aa362ac219fe32e9dfe86;p=mastodon.git 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. --- diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index 832b9e9b1..acfa85c6b 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -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; } }