Files
phoenix-ausblick/lib/outlook_web/components/layouts/app.html.heex
Thelonius Kort 7e085f5202 Update layout
2023-03-30 14:31:10 +02:00

23 lines
687 B
Plaintext

<header class="">
<.breakpoint_indicator :if={Mix.env == :dev} />
<.dark_mode_widget />
</header>
<main class="px-4 py-20 sm:px-6 lg:px-8">
<div class="mx-auto max-w-4xl">
<.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.arrow_path class="ml-1 w-3 h-3 inline animate-spin" />
</.flash>
<%= @inner_content %>
</div>
</main>