From 6e64926f0d96a427b1839fb039760e65718d67c5 Mon Sep 17 00:00:00 2001 From: inhji Date: Mon, 11 Sep 2023 12:08:37 +0200 Subject: [PATCH 1/3] lib/chiya_web/controllers/page_html/note.html.heex aktualisiert --- lib/chiya_web/controllers/page_html/note.html.heex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chiya_web/controllers/page_html/note.html.heex b/lib/chiya_web/controllers/page_html/note.html.heex index 1d1e168..99f3bd5 100644 --- a/lib/chiya_web/controllers/page_html/note.html.heex +++ b/lib/chiya_web/controllers/page_html/note.html.heex @@ -16,7 +16,7 @@ <%= if String.length(@note.url || "") > 0 do %> -
+ <% end %> From f16b6ad9bc58088f8788773848ae6e6e10a04ae1 Mon Sep 17 00:00:00 2001 From: inhji Date: Mon, 11 Sep 2023 12:08:53 +0200 Subject: [PATCH 2/3] lib/chiya_web/controllers/page_html/note.html.heex aktualisiert --- lib/chiya_web/controllers/page_html/note.html.heex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chiya_web/controllers/page_html/note.html.heex b/lib/chiya_web/controllers/page_html/note.html.heex index 99f3bd5..8d05149 100644 --- a/lib/chiya_web/controllers/page_html/note.html.heex +++ b/lib/chiya_web/controllers/page_html/note.html.heex @@ -1,6 +1,6 @@
-
+

<%= @note.name %> From a129614b68510ee7e3a821c6c9d68de4ef48a038 Mon Sep 17 00:00:00 2001 From: inhji Date: Mon, 11 Sep 2023 12:09:25 +0200 Subject: [PATCH 3/3] assets/css/app.css aktualisiert --- assets/css/app.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/assets/css/app.css b/assets/css/app.css index 7ac8a4e..a91ed90 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -118,6 +118,12 @@ The components layer is for class-based styles that you want to be able to override with utilities. */ @layer components { + .note { + .note-link { + @apply text-center text-neutral-900 dark:text-neutral-100; + } + } + .divider { @apply flex items-center my-8 before:flex-1 after:flex-1 before:content-[''] after:content-[''] before:p-[0.5px] after:p-[0.5px] w-full mx-auto last:hidden before:bg-neutral-500/25 after:bg-neutral-500/25 before:mr-2 after:ml-2; }