<div id="container">
<div id="sidenav-menu">
<app-sidenav-menu></app-sidenav-menu>
</div>
<div id="content">
<router-outlet></router-outlet>
</div>
</div>
#container {
width: 100%;
height: 100%;
}
#sidenav-menu {
position: fixed;
left: 0%;
width: 25%;
}
#content {
width: 75%;
position: fixed;
left: 300px;
right: 0%;
height: 100%;
}
#container {
width: 100%;
height: 100%;
}
#sidenav-menu {
position: fixed;
left: 0%;
width: 25%;
}
#content {
width: 75%;
position: fixed;
left: 300px; <--убрат
right: 0%;
height: 100%;
}