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.
This commit is contained in:
ThibG 2019-01-14 17:30:31 +01:00 committed by Eugen Rochko
parent 2648645d05
commit c5b8824a3e
1 changed files with 1 additions and 6 deletions

View File

@ -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;
}