diff options
author | Anthony Bellew <anthonyreflected@gmail.com> | 2017-01-03 11:55:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-03 11:55:59 -0700 |
commit | febe2449bb14f3d877fb934ceb6d52e320712bac (patch) | |
tree | 3fdc3d279c0d8dc4ed494e19e9f3727ca5cf7919 /app | |
parent | de154dbd5dbb04d083f5a66dc288d9fef7006c01 (diff) | |
parent | 1fcb807d91a6e36f2e2aa362ac219fe32e9dfe86 (diff) |
Merge pull request #2 from TrevInc/bio-media-query
Reduce height of media query to hide avatar/bio
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/components.scss | 4 |
1 files changed, 2 insertions, 2 deletions
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; } } |