Skip to content

Commit

Permalink
added cursor pinter and menu title
Browse files Browse the repository at this point in the history
  • Loading branch information
pragati-atharva committed Sep 23, 2022
1 parent f6798cb commit 95bad51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/modules/layout/header/header.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
<!-- Icon of sun or moon according to theme -->
<li>
<div class="mt-3 mr-1">
<img class="h-4 w-4 md:h-5 md:w-5 icon-img" (click)="onThemeChange()"
<img class="h-4 w-4 md:h-5 md:w-5 icon-img cursor-pointer" (click)="onThemeChange()"
[src]="layoutCommonService.isDarkTheme ? svgs.sun : svgs.moon" alt="theme">
</div>
</li>
<!-- Profile Menu -->
<li>
<div class="ml-auto h-3 w-13 md:h-7 md:w-32">
<!-- custom menu component for dropdown with or without icon-->
<app-menu [isIcon]="svgs.profile" [menuItems]="menuItems"
<app-menu [isIcon]="svgs.profile" [title]="'MENU'" [menuItems]="menuItems"
(onItemClick)="onItemClick($event)"></app-menu>
</div>
</li>
Expand Down

0 comments on commit 95bad51

Please sign in to comment.