From e6bc0ce5dccef85f7cc36037fc869558fc6464e5 Mon Sep 17 00:00:00 2001
From: sloane <git@sloanelybutsurely.com>
Date: Wed, 16 Apr 2025 08:18:26 -0400
Subject: [PATCH] update blog list styles

---
 lib/web/controllers/blog_html/index.html.heex | 2 +-
 lib/web/controllers/page_html/home.html.heex  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/web/controllers/blog_html/index.html.heex b/lib/web/controllers/blog_html/index.html.heex
index feca9d7..971dc07 100644
--- a/lib/web/controllers/blog_html/index.html.heex
+++ b/lib/web/controllers/blog_html/index.html.heex
@@ -15,7 +15,7 @@
                     class="flex justify-between items-center hover:bg-gray-50 -mx-2 px-2 py-1 rounded"
                   >
                     <h3 class="p-name u-url">{blog.title}</h3>
-                    <div class="text-gray-500 dt-published">
+                    <div class="text-gray-500 dt-published flex-shrink-0">
                       <.timex value={Core.Posts.publish_date_time(blog)} format="{Mfull} {D}" />
                     </div>
                   </.link>
diff --git a/lib/web/controllers/page_html/home.html.heex b/lib/web/controllers/page_html/home.html.heex
index dda1b4c..6498068 100644
--- a/lib/web/controllers/page_html/home.html.heex
+++ b/lib/web/controllers/page_html/home.html.heex
@@ -16,7 +16,7 @@
               navigate={Web.Paths.public_blog_path(blog)}
               class="flex justify-between items-center hover:bg-gray-50 -mx-2 px-2 py-1 rounded"
             >
-              <h3 class="p-name u-url truncate">{blog.title}</h3>
+              <h3 class="p-name u-url">{blog.title}</h3>
               <div class="text-gray-500 dt-published flex-shrink-0">
                 <.timex value={Core.Posts.publish_date_time(blog)} format="{Mfull} {D}, {YYYY}" />
               </div>