Skip to content

Commit

Permalink
fix(notifications): raise z-index of div around notifications-container
Browse files Browse the repository at this point in the history
to make sure they are always displayed on top (including hovered buttons)
  • Loading branch information
tkohr committed Dec 11, 2024
1 parent 48c95d3 commit 00ae4a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<md-editor-sidebar></md-editor-sidebar>
</aside>
<div class="relative grow flex flex-col">
<div class="absolute top-0 left-0 w-2/3 z-10 pointer-events-none">
<div class="absolute top-0 left-0 w-2/3 z-50 pointer-events-none">
<gn-ui-notifications-container></gn-ui-notifications-container>
</div>
<router-outlet></router-outlet>
Expand Down
2 changes: 1 addition & 1 deletion apps/metadata-editor/src/app/edit/edit-page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="flex flex-col h-full w-full">
<div class="w-full h-auto shrink-0 relative">
<md-editor-top-toolbar></md-editor-top-toolbar>
<div class="absolute top-full left-0 w-2/3 z-10 pointer-events-none">
<div class="absolute top-full left-0 w-2/3 z-50 pointer-events-none">
<gn-ui-notifications-container></gn-ui-notifications-container>
</div>
</div>
Expand Down

0 comments on commit 00ae4a2

Please sign in to comment.