From c52a43792dc9f46178dafce6160cbb4b85bd37b8 Mon Sep 17 00:00:00 2001 From: Conner McKay Date: Wed, 23 Jul 2025 15:05:30 -0400 Subject: [PATCH] Fix border radius on video titles (#1032) Video titles had inherited a border radius that was causing the top left of the text to be clipped off. I added a line to the CSS definitions in the Thumbnail component to set the border-radius to 0px, which should fix the issue. --- materialious/src/lib/components/Thumbnail.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/materialious/src/lib/components/Thumbnail.svelte b/materialious/src/lib/components/Thumbnail.svelte index 9d3c5de7..b0de978a 100644 --- a/materialious/src/lib/components/Thumbnail.svelte +++ b/materialious/src/lib/components/Thumbnail.svelte @@ -270,6 +270,7 @@ .video-title { word-wrap: break-word; overflow: hidden; + border-radius: 0px; } .thumbnail-details {