How to customize default width of side-nav? I have tried to change as in the documentation:
mat-drawer {
width: 200px;
}
but it doesn't work. If I add !important then the expand functionality is not working This is a code
<mat-drawer-container class="example-container" fullscreen autosize>
<mat-drawer [@openClose]="menuState == 1 ? 'open':'close'" class="example-sidenav" mode="side" opened>
<app-menu-top></app-menu-top>
<app-side-menu-links></app-side-menu-links>
</mat-drawer>
<div class="example-sidenav-content">
<app-header [configData]="configData" (onSearchButtonClick)="searchButtonClick($event)"></app-header>
<ng-content></ng-content>
</div>
</mat-drawer-container>
Thanks in advance!
Seems you missed
.
syntax of class in css, also try this class in your code -PS: It must be declared in the styles.css in your src folder (Global CSS file)