blob: b882ce391f124638c173804af97c0c7292a16c38 [file] [log] [blame]
<app-header (isShowSidebar)="sidenav.toggle($event)" [isMenuOpened]="isShowSidebar"></app-header>
<mat-sidenav-container class="layout">
<mat-sidenav
#sidenav
mode="side"
[(opened)]="isShowSidebar"
class="layout-sidebar"
[mode]="mobileQuery.matches ? 'over' : 'side'"
[fixedInViewport]="mobileQuery.matches"
>
<app-sidebar></app-sidebar>
</mat-sidenav>
<mat-sidenav-content class="layout-content">
<ng-content></ng-content>
</mat-sidenav-content>
</mat-sidenav-container>