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.
This commit is contained in:
Ricardo
2026-02-24 17:21:02 +01:00
parent 91ed859a35
commit 167b6620cc

View File

@@ -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 */