Files
malarkey/lib/malarkey_web/components/layouts/app.html.heex
Fergal Moran 2c392bb9aa Add fly build
2022-11-23 09:53:42 +00:00

20 lines
616 B
Plaintext

<main class="px-4 py-4 sm:px-6 lg:px-8">
<div class="max-w-2xl mx-auto">
<.flash kind={:info} title="Success!" flash={@flash} />
<.flash kind={:error} title="Error!" flash={@flash} />
<.flash
id="disconnected"
kind={:error}
title="We can't find the internet"
close={false}
autoshow={false}
phx-disconnected={show("#disconnected")}
phx-connected={hide("#disconnected")}
>
Attempting to reconnect <%= Heroicons.icon("arrow-path", type: "solid", class: "inline w-3 h-3 ml-1 animate-spin") %> />
</.flash>
<%= @inner_content %>
</div>
</main>