From 0964f25f974b69f4664e60c966cdafb9ad35f6b2 Mon Sep 17 00:00:00 2001 From: Gigi Date: Wed, 15 Oct 2025 16:20:35 +0200 Subject: [PATCH] refactor: make section dividers more subtle Changed border color from var(--color-border) to rgba(255, 255, 255, 0.05) for a much more subtle dividing line between bookmark sections. --- src/styles/components/cards.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/components/cards.css b/src/styles/components/cards.css index a3a0c3be..26fb62d2 100644 --- a/src/styles/components/cards.css +++ b/src/styles/components/cards.css @@ -15,7 +15,7 @@ color: var(--color-text-muted) !important; padding: 1.5rem 0.5rem 0.375rem !important; margin: 0 !important; - border-top: 1px solid var(--color-border); + border-top: 1px solid rgba(255, 255, 255, 0.05); } .bookmarks-section:first-of-type .bookmarks-section-title { border-top: none;