mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 22:29:38 +02:00
* Add institution management * Allow user to select institution on create or edit * Improve redirect behavior * Final cleanup * i18n normalization
8 lines
349 B
Text
8 lines
349 B
Text
<%# 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">
|
|
<div class="flex flex-col">
|
|
<%= content %>
|
|
</div>
|
|
</dialog>
|
|
<% end %>
|