1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-18 20:59:39 +02:00
Maybe/app/views/shared/_modal.html.erb

9 lines
441 B
Text
Raw Normal View History

<%# locals: (content:, classes:) -%>
<%= turbo_frame_tag "modal" do %>
<dialog class="md:m-auto bg-container shadow-border-xs rounded-none md:rounded-2xl max-w-screen max-h-screen md:max-w-max w-full h-full md:h-fit md:w-auto overflow-visible <%= classes %>" data-controller="modal" data-action="mousedown->modal#clickOutside">
<div class="flex flex-col h-full md:h-auto mt-safe">
<%= content %>
</div>
</dialog>
<% end %>