17 lines
569 B
HTML

<mat-sidenav-container>
<mat-sidenav
[disableClose]="!isMobileScreenSize"
[ngClass]="{ 'sidenav--hidden': hideSidenav }"
[@sidenavAnimation]="sidenavAnimationState"
[opened]="!isMobileScreenSize"
[mode]="isMobileScreenSize ? 'over' : 'side'">
<ng-content sidenav select="[app-layout-navigation]"></ng-content>
</mat-sidenav>
<div>
<div [@contentAnimation]="contentAnimationState">
<ng-content select="[app-layout-content]"></ng-content>
</div>
</div>
</mat-sidenav-container>