From 6f913262f4996a522013e1bbdac1ca96dfb5bd83 Mon Sep 17 00:00:00 2001 From: Gigi Date: Wed, 15 Oct 2025 21:35:11 +0200 Subject: [PATCH] style: reduce whitespace around bookmark filters on /me page - Reduce padding on bookmark filters from 1rem to 0.5rem - Reduce top padding of tab content when filters are present - Tighten spacing for more compact layout --- src/styles/components/me.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/styles/components/me.css b/src/styles/components/me.css index f0bcd3cb..7f59cf74 100644 --- a/src/styles/components/me.css +++ b/src/styles/components/me.css @@ -67,6 +67,10 @@ width: 100%; } +.me-tab-content:has(.bookmark-filters) { + padding-top: 0.75rem; +} + /* Align highlight list width with profile card width on /me */ .me-highlights-list { padding-left: 0; padding-right: 0; } .explore-header .author-card { max-width: 600px; margin: 0 auto; width: 100%; } @@ -83,8 +87,9 @@ .me-tab-content .bookmark-filters { background: transparent; border: none; - padding: 0 0 1rem 0; + padding: 0 0 0.5rem 0; justify-content: center; + margin-bottom: 0.5rem; } /* Ensure all reading list elements are left-aligned */