mckenziearts / laravel-notify

Flexible Flash notifications for Laravel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The box remains under the content, not being read. How to solve this?

Marcolino92 opened this issue · comments

The box remains under the content, not being read. How to solve this?

If I'm understanding your question correctly, I fixed this by adding this to my css:

.inset-0 {
    z-index: 999 !important;
}

It's hacky but works, just hooks into a class and makes the box show up above all else. Hoping thats the issue you were having.

thank you @kriiv, I solved the problem.