Как установить фиксированную высоту для <mat-sidenav-content>
или <mat-sidenav-container>
как 100% видимой области?
Теперь содержимое внутри <mat-sidenav-container></mat-sidenav-container>
исчезает, когда в нем много данных.
<mat-sidenav-container><div class="content">A lot content here...</div></mat-sidenav-container>
Моя идея установить:
.content {
height: inherit;
overflow-y: scroll;
}
Но теперь <mat-sidenav-container>
не имеет ограничения по высоте.