From 78bc1f46ddcd680192e66542aff34af7988faead Mon Sep 17 00:00:00 2001 From: Gigi Date: Sat, 25 Oct 2025 01:52:35 +0200 Subject: [PATCH] style: eliminate excessive space between progress bar and footer - Reduce ReadingProgressBar margins from 0.25rem to 0.125rem (75% reduction) - Reduce bookmark footer padding-top from 0.25rem to 0.125rem (75% reduction) - Reduce reading progress separator margin from 0.25rem to 0.125rem (75% reduction) - Update responsive breakpoints for ultra-compact spacing - Achieve minimal gap between progress bar and date/author footer - Create ultra-tight vertical layout with almost no wasted space --- src/components/BookmarkViews/CardView.tsx | 4 ++-- src/styles/components/cards.css | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/BookmarkViews/CardView.tsx b/src/components/BookmarkViews/CardView.tsx index 39a0ca12..7f98abcb 100644 --- a/src/components/BookmarkViews/CardView.tsx +++ b/src/components/BookmarkViews/CardView.tsx @@ -150,8 +150,8 @@ export const CardView: React.FC = ({
diff --git a/src/styles/components/cards.css b/src/styles/components/cards.css index 01d9deb9..a2a35724 100644 --- a/src/styles/components/cards.css +++ b/src/styles/components/cards.css @@ -200,7 +200,7 @@ .card-content .bookmark-footer { margin-top: auto; - padding-top: 0.25rem; + padding-top: 0.125rem; display: flex; justify-content: space-between; align-items: center; @@ -238,7 +238,7 @@ background: var(--color-border); border-radius: 0.5px; overflow: hidden; - margin: 0.25rem 0; + margin: 0.125rem 0; position: relative; } @@ -323,7 +323,7 @@ } .card-content .bookmark-footer { - padding-top: 0.25rem; + padding-top: 0.125rem; } }