Fix weird spacing under footer
This commit is contained in:
parent
5cd46ba963
commit
6a989ca6ca
2 changed files with 3 additions and 5 deletions
|
@ -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 {
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
$primary: #E85537;
|
||||
$body-bg: #17181C;
|
||||
$footer-height: 110px;
|
||||
|
|
Loading…
Reference in a new issue