Files
phoenix-ausblick/lib/outlook_web/components/layouts/app.html.heex
2023-05-02 22:09:04 +02:00

23 lines
707 B
Plaintext

<header class="">
<.breakpoint_indicator :if={Mix.env == :dev} />
<.dark_mode_widget />
</header>
<main class="px-4 sm:px-6 lg:px-8 lg:mx-auto h-screen">
<div class="mx-auto max-w-4xl h-fit">
<.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>