mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 17:37:36 +01:00
22 lines
339 B
SCSS
22 lines
339 B
SCSS
|
// ===========================================================================
|
||
|
// STICKY FOOTER
|
||
|
|
||
|
|
||
|
|
||
|
$footer-height: 15em;
|
||
|
|
||
|
html,
|
||
|
body { height: 100%; }
|
||
|
|
||
|
.page {
|
||
|
margin-bottom: -$footer-height;
|
||
|
min-height: 100%;
|
||
|
height: auto !important;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.footer-shim,
|
||
|
.contentinfo {
|
||
|
clear: both;
|
||
|
height: $footer-height;
|
||
|
}
|