diff options
author | Mateusz Bugowski <23140767+mbugowski@users.noreply.github.com> | 2019-01-11 08:30:19 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-01-11 07:30:19 +0000 |
commit | 11832460431bb6b3196daf17656c2cc76e8ae63d (patch) | |
tree | ff592a8aea6167f06a2a2b8efc71530ccaaf24bf /app/javascript/styles | |
parent | c3a657223f495be9d06757201c95e282756ceec7 (diff) |
change height on narrow view to take 100% of screen (#9781)
* change height on narrow view to take 100% of screen * add empty line before @media
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/about.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/about.scss b/app/javascript/styles/mastodon/about.scss index dc456be3e..4023b34d8 100644 --- a/app/javascript/styles/mastodon/about.scss +++ b/app/javascript/styles/mastodon/about.scss @@ -1041,6 +1041,10 @@ $small-breakpoint: 960px; .scrollable { height: 400px; + + @media screen and (max-width: $column-breakpoint) { + height: 90vh; + } } p { |