From e921342823af107b66c6a6400ca16eaa88d60e18 Mon Sep 17 00:00:00 2001 From: Daniel Nitsikopoulos Date: Wed, 21 Jun 2023 21:36:40 +1000 Subject: [PATCH] Fix truncation --- app/templates/bookmarks/show.html.slim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/bookmarks/show.html.slim b/app/templates/bookmarks/show.html.slim index 5cd1873..0e96e6e 100644 --- a/app/templates/bookmarks/show.html.slim +++ b/app/templates/bookmarks/show.html.slim @@ -5,7 +5,7 @@ div class="mb-12 prose dark:prose-invert max-w-prose mx-auto text-gray-800 dark: div class="mb-12 prose dark:prose-invert max-w-prose mx-auto text-gray-800 dark:text-gray-200" x-data="{ open: false }" a class="text-blue-600 no-underline hover:underline" href=bookmark.url - p class="text-xl text-ellipsis" + p class="text-xl text-ellipsis overflow-hidden" = bookmark.url == bookmark.content