/** * Sticky footer */ @mixin set-sticky-footer($height, $padding: 30px, $cssId: footer) { html { height: 100%; } body { position: relative; margin: 0; padding: 0; min-height: 100%; } #wrapper { padding-bottom: $height + $padding; } ##{$cssId} { position: absolute; bottom: 0; left: 0; right: 0; height: $height; overflow: hidden; .inside { height: 100%; } } }