1
Fork 0

Fix weird spacing under footer

This commit is contained in:
Jake Howard 2019-04-27 21:44:00 +01:00
parent 5cd46ba963
commit 6a989ca6ca
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 3 additions and 5 deletions

View file

@ -7,7 +7,6 @@ $body-color: $gray-300;
html, body {
height: 100%;
color: $body-color;
}
@ -125,15 +124,13 @@ table td {
#index-header {
width: 100%;
height: calc(100% - 110px);
height: calc(100vh - #{$footer-height});
}
footer {
position: static;
bottom: 0;
background-color: $black;
width: 100%;
height: 110px;
height: $footer-height;
color: lighten($black, 50);
a {

View file

@ -1,2 +1,3 @@
$primary: #E85537;
$body-bg: #17181C;
$footer-height: 110px;