Skip to content

Commit

Permalink
Fix stacking of notification dot (#6875)
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 authored and groszewn committed Aug 13, 2024
1 parent 3dbfc22 commit 7065efa
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 7065efa

Please sign in to comment.