Browse Source

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.
closed-social-glitch-2
Anthony Bellew 7 years ago
committed by GitHub
parent
commit
1fcb807d91
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/assets/stylesheets/components.scss

+ 2
- 2
app/assets/stylesheets/components.scss 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;
}
}

Loading…
Cancel
Save