You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
432 B
26 lines
432 B
/**
|
|
* This file contains the styles required to make the footer sticky.
|
|
*/
|
|
$footer-min-height: 130px !default;
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
#page-wrapper {
|
|
min-height: 100%;
|
|
padding-bottom: $spacer;
|
|
margin-bottom: -$footer-min-height;
|
|
}
|
|
|
|
#page-wrapper::after {
|
|
content: "";
|
|
display: block;
|
|
min-height: $footer-min-height;
|
|
}
|
|
|
|
#page-footer {
|
|
min-height: $footer-min-height;
|
|
text-align: left;
|
|
}
|
|
|