@import “bootstrap”;

$sticky_footer_height: 3em;;

body {

padding-top: $navbar-height + 20;

}

// If you want to use a sticky footer, put the .sticky class on your .html html.sticky {

position: relative;
min-height: 100%;

}

@media (min-width: $screen-sm-min) {

.sticky body {
  margin-bottom: $sticky_footer_height;
}

.sticky footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: $sticky_footer_height;
}

}