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 {
|
html, body {
|
||||||
height: 100%;
|
|
||||||
color: $body-color;
|
color: $body-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -125,15 +124,13 @@ table td {
|
||||||
|
|
||||||
#index-header {
|
#index-header {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100% - 110px);
|
height: calc(100vh - #{$footer-height});
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
position: static;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: $black;
|
background-color: $black;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 110px;
|
height: $footer-height;
|
||||||
color: lighten($black, 50);
|
color: lighten($black, 50);
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
$primary: #E85537;
|
$primary: #E85537;
|
||||||
$body-bg: #17181C;
|
$body-bg: #17181C;
|
||||||
|
$footer-height: 110px;
|
||||||
|
|
Loading…
Reference in a new issue