Skip to content

Commit

Permalink
Increase the stacking order of laravel-notify (#114)
Browse files Browse the repository at this point in the history
Add a higher z-index to laravel-notify to ensure they will appear on top always.
  • Loading branch information
otatechie authored Sep 25, 2023
1 parent 1000424 commit f23b2aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/notifications/emotify.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@if (session()->get('notify.model') === 'emotify')
<div class="notify fixed inset-0 flex items-end justify-end px-4 py-6 pointer-events-none sm:p-6 sm:items-start sm:justify-end">
<div class="z-50 notify fixed inset-0 flex items-end justify-end px-4 py-6 pointer-events-none sm:p-6 sm:items-start sm:justify-end">
<div
x-data="{ show: @if(session()->get('notify.model') === 'emotify') true @else false @endif }"
x-init="setTimeout(() => { show = true }, 750)"
Expand Down

0 comments on commit f23b2aa

Please sign in to comment.