16 lines
609 B
Plaintext
16 lines
609 B
Plaintext
<div data-modal-target="container"
|
|
data-action="click->modal#closeBackground keyup@window->modal#closeWithKeyboard"
|
|
class="hidden animate-scale-in fixed inset-0 overflow-y-auto flex items-center justify-center"
|
|
style="z-index: 9999;">
|
|
<div class="max-h-screen w-auto max-w-lg relative">
|
|
<div class="m-1 bg-white rounded shadow">
|
|
<div class="p-8">
|
|
<%= content %>
|
|
<div class="flex justify-end items-center flex-wrap mt-6">
|
|
<button class="btn-md btn-blue" data-action="click->modal#close">Close</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|