Files
sure/app/views/shared/_modal.html.erb
2024-04-18 16:55:56 -04:00

9 lines
331 B
Plaintext

<%# locals: (content:) -%>
<%= turbo_frame_tag "modal" do %>
<dialog class="bg-white border border-alpha-black-25 rounded-2xl max-h-[648px] max-w-[580px] w-full shadow-xs h-fit" data-controller="modal" data-action="click->modal#clickOutside">
<div class="flex flex-col">
<%= content %>
</div>
</dialog>
<% end %>