Created
August 9, 2018 05:49
-
-
Save yubing24/e27a8ffe890a3ddf99d465b22522e38b to your computer and use it in GitHub Desktop.
Skeleton code for Side Navigation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mat-toolbar color="accent"> | |
<button mat-icon-button matTooltip="Application Menu" (click)="sidenav.toggle()"> | |
<mat-icon>settings</mat-icon> | |
</button> | |
Account Settings | |
</mat-toolbar> | |
<mat-sidenav-container style="height: calc(100% - 64px); margin: 0;"> | |
<mat-sidenav #sidenav mode="side" [class.mat-elevation-z4]="true" style="width: 240px"> | |
</mat-sidenav> | |
<mat-sidenav-content> | |
</mat-sidenav-content> | |
</mat-sidenav-container> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment