feat(dashboard): add options menu and improve layout
This commit is contained in:
parent
56cb68a3ce
commit
ba520eea10
7 changed files with 84 additions and 20 deletions
9
src/app/options-menu/options-menu.component.html
Normal file
9
src/app/options-menu/options-menu.component.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<button mat-icon-button [matMenuTriggerFor]="menu" aria-label="Example icon-button with a menu">
|
||||
<mat-icon>more_vert</mat-icon>
|
||||
</button>
|
||||
<mat-menu #menu="matMenu">
|
||||
<button (click)="logout()" mat-menu-item>
|
||||
<mat-icon>logout</mat-icon>
|
||||
<span>Logout</span>
|
||||
</button>
|
||||
</mat-menu>
|
Loading…
Add table
Add a link
Reference in a new issue