Fix hashtag timeline on mobile (#9806)

Instead of forcing 90vh for the scrollable part of the timeline's height as
in #9781 (which may be off), use `display: flex`, exactly like on desktop.
master
ThibG 5 years ago committed by Eugen Rochko
parent 2648645d05
commit c5b8824a3e
  1. 7
      app/javascript/styles/mastodon/about.scss

@ -1041,10 +1041,6 @@ $small-breakpoint: 960px;
.scrollable {
height: 400px;
@media screen and (max-width: $column-breakpoint) {
height: 90vh;
}
}
p {
@ -1271,8 +1267,7 @@ $small-breakpoint: 960px;
}
#mastodon-timeline {
display: block;
width: 100vw;
display: flex;
height: 100vh;
border-radius: 0;
}

Loading…
Cancel
Save