Current section

Files

Jump to
moon lib moon_web pages tutorials theming theming_and_visuals.ex
Raw

lib/moon_web/pages/tutorials/theming/theming_and_visuals.ex

defmodule MoonWeb.Pages.Theming.ThemingAndVisuals do
@moduledoc false
use MoonWeb, :live_view
alias Moon.Autolayouts.TopToDown
alias Moon.Components.Heading
alias Moon.Components.Link
alias Moon.Components.Text
alias MoonWeb.Components.Page
data(breadcrumbs, :any,
default: [
%{
to: "#",
name: "Tutorials"
},
%{
to: "/tutorials/theming-and-visuals",
name: "Theming and Visuals"
}
]
)
def handle_params(_params, uri, socket) do
{:noreply, assign(socket, uri: uri)}
end
def render(assigns) do
~F"""
<Page {=@theme_name} {=@active_page} {=@breadcrumbs} {=@direction}>
<TopToDown>
<Heading size={32}>Theming and visuals</Heading>
<Text>
Theming and visuals is based on TailwindCSS rules.
</Text>
<Heading size={24} class="mt-8" id="text-color">Text color</Heading>
Read more: <Link to="https://tailwindcss.com/docs/text-color">https://tailwindcss.com/docs/text-color</Link>
<Heading size={24} class="mt-8" id="background-color">Background color</Heading>
Read more: <Link to="https://tailwindcss.com/docs/background-color">https://tailwindcss.com/docs/background-color</Link>
<Heading size={24} class="mt-8" id="border-radius">Border radius</Heading>
Read more: <Link to="https://tailwindcss.com/docs/border-radius">https://tailwindcss.com/docs/border-radius</Link>
<Heading size={24} class="mt-8" id="margin">Margin</Heading>
Read more: <Link to="https://tailwindcss.com/docs/margin">https://tailwindcss.com/docs/margin</Link>
<Heading size={24} class="mt-8" id="padding">Padding</Heading>
Read more: <Link to="https://tailwindcss.com/docs/padding">https://tailwindcss.com/docs/padding</Link>
<Heading size={24} class="mt-8" id="responsive-layout">Responsive layout</Heading>
Read more: <Link to="https://tailwindcss.com/docs/responsive-design">https://tailwindcss.com/docs/responsive-design</Link>
</TopToDown>
</Page>
"""
end
end