diff options
author | Bryan Brattlof <hello@bryanbrattlof.com> | 2020-06-26 17:37:59 -0400 |
---|---|---|
committer | Bryan Brattlof <hello@bryanbrattlof.com> | 2020-06-26 17:37:59 -0400 |
commit | 9e85d8332b5c6ff5192ae64115924e912fe8218c (patch) | |
tree | 1a5f141769941c4434cee9a9ee0e686e40ff41ba | |
parent | 3254e875ee5303cea907aea416285e283e824266 (diff) | |
download | bryanbrattlof.com-9e85d8332b5c6ff5192ae64115924e912fe8218c.tar.gz bryanbrattlof.com-9e85d8332b5c6ff5192ae64115924e912fe8218c.tar.bz2 |
remove height restriction from index page
-rw-r--r-- | stylesheets/index.scss | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/stylesheets/index.scss b/stylesheets/index.scss index c0a0610..7ee708a 100644 --- a/stylesheets/index.scss +++ b/stylesheets/index.scss @@ -3,6 +3,7 @@ main { + min-height: 100vh; @extend %flexbox; @include flex-dir(column); @@ -13,9 +14,6 @@ main { margin: auto; max-width: $max-page-width; - height: 100vh; - min-height: 500px; - @include breakpoint-min($max-page-width) { padding-top: 3 * $default-spacing; } |