Skip to content

Commit

Permalink
Fix stacking of notification dot
Browse files Browse the repository at this point in the history
An upcoming change in Angular Material (angular/components#29291) changes the `z-index` of icons which ended up putting it behind the notification dot.

This change adds an explicit `z-index` to the dot to ensure that it's on top of the icon.
  • Loading branch information
crisbeto committed Jul 3, 2024
1 parent b163c5d commit ecd2468
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ limitations under the License.
right: 10px;
top: 10px;
width: $_dim;
z-index: 2;
}

::ng-deep .notification-menu.mat-mdc-menu-panel {
Expand Down

0 comments on commit ecd2468

Please sign in to comment.