mix format

This commit is contained in:
Inhji 2023-07-24 18:39:25 +02:00
parent 7f24868638
commit 4398518741
6 changed files with 14 additions and 17 deletions

View file

@ -31,6 +31,7 @@ defmodule ChiyaWeb.CoreComponents do
end end
attr :class, :string, default: nil attr :class, :string, default: nil
def darkmode_toggle(assigns) do def darkmode_toggle(assigns) do
~H""" ~H"""
<.link href="#" id="dark-mode-toggle" class={["text-sm leading-6", @class]}> <.link href="#" id="dark-mode-toggle" class={["text-sm leading-6", @class]}>

View file

@ -4,12 +4,7 @@
</.error> </.error>
<.input field={f[:name]} type="text" /> <.input field={f[:name]} type="text" />
<.input field={f[:content]} <.input field={f[:content]} type="textarea" label="Content" rows="15" class="font-mono" />
type="textarea"
label="Content"
rows="15"
class="font-mono"
/>
<.input field={f[:slug]} type="text" label="Slug" /> <.input field={f[:slug]} type="text" label="Slug" />
<.input field={f[:published_at]} type="datetime-local" label="Published at" /> <.input field={f[:published_at]} type="datetime-local" label="Published at" />
<.input <.input

View file

@ -1,6 +1,5 @@
<section class="max-w-2xl mx-auto"> <section class="max-w-2xl mx-auto">
<article class="h-card hcard"> <article class="h-card hcard">
<section class="flex gap-3"> <section class="flex gap-3">
<img <img
class="rounded-lg block text-center w-28 h-28 | u-photo" class="rounded-lg block text-center w-28 h-28 | u-photo"
@ -10,7 +9,6 @@
<span class="p-name"><%= @user.name %></span> <span class="p-name"><%= @user.name %></span>
<:subtitle><%= @user.bio %></:subtitle> <:subtitle><%= @user.bio %></:subtitle>
</.header> </.header>
</section> </section>
<%= if @note do %> <%= if @note do %>

View file

@ -6,8 +6,11 @@
<%= if @current_user do %> <%= if @current_user do %>
<section class="max-w-2xl mx-auto mt-8"> <section class="max-w-2xl mx-auto mt-8">
<ul class="flex gap-3"> <ul class="flex gap-3">
<li><a href={~p"/admin/notes/#{@note}/edit"} class="button"> <li>
<.icon name="hero-pencil-square" /> Edit</a></li> <a href={~p"/admin/notes/#{@note}/edit"} class="button">
<.icon name="hero-pencil-square" /> Edit
</a>
</li>
<li><a href={~p"/admin/notes/#{@note}"} class="button">Show in Admin</a></li> <li><a href={~p"/admin/notes/#{@note}"} class="button">Show in Admin</a></li>
</ul> </ul>
</section> </section>