diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-01-13 20:40:46 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-01-13 20:40:46 +0100 |
commit | 2c5f0f12aca01a91c2e67061c0e676fbd4963139 (patch) | |
tree | f40ef41529c075a93553b1d10abb5cce4e9bc9a2 | |
parent | 278ff1318fd9772f3663e7540b9ece020c73a953 (diff) |
[Glitch] change height on narrow view to take 100% of screen
Port 11832460431bb6b3196daf17656c2cc76e8ae63d to glitch-soc
-rw-r--r-- | app/javascript/flavours/glitch/styles/about.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/styles/about.scss b/app/javascript/flavours/glitch/styles/about.scss index f676a8c77..da50581fb 100644 --- a/app/javascript/flavours/glitch/styles/about.scss +++ b/app/javascript/flavours/glitch/styles/about.scss @@ -1044,6 +1044,10 @@ $small-breakpoint: 960px; .scrollable { height: 400px; + + @media screen and (max-width: $column-breakpoint) { + height: 90vh; + } } p { |