Need help positioning a footer at the bottom of the page?
Using the class fixed-bottom
causes the footer to overlap the content when scrolling.
<div class="sticky-top">
<qipr-header></qipr-header>
<qipr-sidenav></qipr-sidenav>
</div>
<section class="container-fluid">
<div class="row">
<div class="content offset-md-3 offset-lg-2 col-md-9 col-lg-10 mb-4 mt-2">
<router-outlet></router-outlet>
</div>
</div>
</section>
<div class="fixed-bottom">
<qipr-footer></qipr-footer>
</div>