diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-08-23 14:55:09 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-08-23 14:55:09 -0700 |
commit | 96b9a96a50c34341b3f00eac74073d08cc914a46 (patch) | |
tree | fbbcd55d501e42dc48ff7e53fe65b721b3d8d096 /youtube | |
parent | 85572c94de77f4a51d5b64e44c6b50cbe200c946 (diff) | |
download | yt-local-96b9a96a50c34341b3f00eac74073d08cc914a46.tar.lz yt-local-96b9a96a50c34341b3f00eac74073d08cc914a46.tar.xz yt-local-96b9a96a50c34341b3f00eac74073d08cc914a46.zip |
Layout: Regression: fix blank space at bottom of short pages
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/static/shared.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube/static/shared.css b/youtube/static/shared.css index 3624272..382f86c 100644 --- a/youtube/static/shared.css +++ b/youtube/static/shared.css @@ -17,6 +17,8 @@ body{ background-color:#cccccc; min-height:100vh; + display: flex; + flex-direction: column; } header{ @@ -99,7 +101,7 @@ body{ } main{ - grid-row: 2; + flex-grow: 1; } |