Having an issue with the development of a web app using Angular and Bootstrap 4.0.0 CSS framework. The goal is to have the app fit the screen size without any scrollbars.
<nav class="navbar fixed-top navbar-expand navbar-dark">
Upper navBar
</nav>
<router-outlet></router-outlet>
<nav class="navbar fixed-bottom navbar-expand navbar-dark">
Test
</nav>
However, when an image is placed in the template of a route, it ends up under the bottom navBar, causing the page to become scrollable.
Looking for a way to limit the height of the content within the router-outlet without specifying a fixed size in CSS to maintain responsiveness!
Any help or suggestions would be greatly appreciated.