I know there are many threads about this but I tried everything from the other threads and it didn't work.
So I currently have this code right here:
<div class="container-fluid d-flex flex-column" style="height: 100vh;">
<div class="row d-flex flex-column no-gutters">
<app-top class="col"></app-top>
<div class="row flex-row no-gutters" style="margin-top: 38px;">
<app-left class="col flex-shrink-0"></app-left>
<div class="col">
<router-outlet></router-outlet>
</div>
<app-right class="col flex-shrink-0"></app-right>
</div>
</div>
</div>
The content isn't stretching how I would like it to. There is a Navbar at the top and then there should be three columns, with full height.