davidcanonieto 8413bf2183 [ADF-2892] Sidenav now prevents closing itself when ESC key is pressed (#3302)
* [ADF-2892] Sidenav now closes when clicking outside of it

* [ADF-2892] Sidevan now prevents closing itself when ESC key is pressed
2018-05-10 17:33:31 +01:00

17 lines
603 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" style="margin-left: 0 !important">
<ng-content select="[app-layout-content]"></ng-content>
</div>
</div>
</mat-sidenav-container>