Files
sure/app/views/shared/_modal.html.erb
2024-02-10 13:26:07 -06:00

9 lines
338 B
Plaintext

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