mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 06:44:52 +00:00
9 lines
339 B
Plaintext
9 lines
339 B
Plaintext
<%# locals: (content:) -%>
|
|
<%= turbo_frame_tag "modal" do %>
|
|
<dialog class="bg-white border border-alpha-black-25 rounded-2xl max-h-[556px] max-w-[580px] w-full shadow-xs h-full" data-controller="modal" data-action="click->modal#clickOutside">
|
|
<div class="flex flex-col h-full">
|
|
<%= content %>
|
|
</div>
|
|
</dialog>
|
|
<% end %>
|