From 32ee05c90ed399c8ef0972357cc390dbff3e1976 Mon Sep 17 00:00:00 2001 From: inhji Date: Fri, 31 Mar 2023 09:32:00 +0200 Subject: [PATCH 1/2] update tailwind to 3.3.1 --- config/config.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.exs b/config/config.exs index d79b66c..45081fa 100644 --- a/config/config.exs +++ b/config/config.exs @@ -31,7 +31,7 @@ config :chiya, Chiya.Mailer, adapter: Swoosh.Adapters.Local # Configure tailwind (the version is required) config :tailwind, - version: "3.2.4", + version: "3.3.1", default: [ args: ~w( --config=tailwind.config.js -- 2.39.5 From 043155b92a1ff080cb07285a66a1bf554f2d248e Mon Sep 17 00:00:00 2001 From: inhji Date: Fri, 31 Mar 2023 10:01:54 +0200 Subject: [PATCH 2/2] improve note page title --- lib/chiya_web/controllers/page_html/note.html.heex | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/chiya_web/controllers/page_html/note.html.heex b/lib/chiya_web/controllers/page_html/note.html.heex index fd8a8f6..e747c83 100644 --- a/lib/chiya_web/controllers/page_html/note.html.heex +++ b/lib/chiya_web/controllers/page_html/note.html.heex @@ -1,6 +1,8 @@
-

<%= @note.name %>

-

+

+ <%= @note.name %> +

+

<%= pretty_date(@note.published_at) %>

-- 2.39.5