mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * format * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * fix conflict * fix conflict * chore: run rubocop * fix test * update PWA logo * fix tests * chore: lint * fix test * Refactor: Remove duplicate data attribute in activity partial and add chat form rendering in chats index --------- Co-authored-by: Josh Pigford <josh@joshpigford.com>
25 lines
729 B
Text
25 lines
729 B
Text
<%= render "layouts/shared/htmldoc" do %>
|
|
<div class="flex flex-col h-dvh bg-white pt-safe">
|
|
<header class="flex items-center justify-between p-8">
|
|
<%= link_to content_for(:previous_path) || imports_path do %>
|
|
<%= lucide_icon "arrow-left", class: "w-5 h-5 text-secondary" %>
|
|
<% end %>
|
|
|
|
<nav>
|
|
<%= yield :header_nav %>
|
|
</nav>
|
|
|
|
<%= link_to imports_path do %>
|
|
<%= lucide_icon "x", class: "text-secondary w-5 h-5" %>
|
|
<% end %>
|
|
</header>
|
|
|
|
<main class="grow px-8 md:pt-12 pb-32 overflow-y-auto">
|
|
<div class="flex md:hidden justify-center w-full">
|
|
<%= yield :mobile_import_progress %>
|
|
</div>
|
|
|
|
<%= yield %>
|
|
</main>
|
|
</div>
|
|
<% end %>
|