1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-22 14:49:38 +02:00
Maybe/app/views/shared/_modal.html.erb

9 lines
349 B
Text
Raw Normal View History

<%# locals: (content:, classes:) -%>
<%= turbo_frame_tag "modal" do %>
<dialog class="bg-white border border-alpha-black-25 rounded-2xl max-w-[580px] w-min-content shadow-xs h-fit <%= classes %>" data-controller="modal" data-action="click->modal#clickOutside">
2024-04-18 22:55:56 +02:00
<div class="flex flex-col">
<%= content %>
</div>
</dialog>
<% end %>