Replies: 2 comments
-
You can already do this by publishing the modal view and making the required edits to the blade file.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
@thermiteplasma the thing with publishing the views is that you're not getting any updates either. Might not necessarily be a problem though, just putting it out there :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The problem:
I had other stuff on my page set z-40, made the modal not appear on top.
Analysis:
I found in
vendor/wire-elements/modal/resources/views/modal.blade.php
that the z index is set via tailwind to 10
class="fixed inset-0 z-10 overflow-y-auto"
The Solution?:
Since the modal creates a curtain, I think this needs to be in a setting in the config files as adjustable on a per project basis (and/or probably defaulting to z-50).
Beta Was this translation helpful? Give feedback.
All reactions