From 167b6620cc425fe714c27831688279027e4cfca4 Mon Sep 17 00:00:00 2001 From: Ricardo Date: Tue, 24 Feb 2026 17:21:02 +0100 Subject: [PATCH] fix: use side-specific border color on post-list items The .post-list li rule used border-surface-200 which sets border-color for ALL sides (shorthand). Combined with its higher specificity (0-1-1 vs 0-1-0), this overrode the border-l-{color} utility classes on .post-card elements. Changing to border-b-surface-200 restricts the color to only the bottom separator border, allowing the left border color utilities to apply correctly. --- css/tailwind.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/tailwind.css b/css/tailwind.css index 0346fbb..43062db 100644 --- a/css/tailwind.css +++ b/css/tailwind.css @@ -224,7 +224,7 @@ } .post-list li { - @apply pb-6 border-b border-surface-200 dark:border-surface-700 last:border-0; + @apply pb-6 border-b border-b-surface-200 dark:border-b-surface-700 last:border-0; } /* Post meta */