From 667397e5284cefd2511d7955d3901d0896e482c4 Mon Sep 17 00:00:00 2001 From: Gigi Date: Tue, 14 Oct 2025 00:52:19 +0200 Subject: [PATCH] fix: align title, summary, meta, and body text in reader - Add consistent 2rem horizontal padding to reader-header on desktop - Apply same padding to reader-summary-below-image, article-menu-container, and mark-as-read-container - All content elements now align properly with body text - Mobile (< 769px) retains base padding only --- src/styles/components/reader.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/styles/components/reader.css b/src/styles/components/reader.css index be8e9ff4..4533de47 100644 --- a/src/styles/components/reader.css +++ b/src/styles/components/reader.css @@ -169,7 +169,12 @@ /* Desktop: increase horizontal padding for text content */ @media (min-width: 769px) { - .reader-html, .reader-markdown { + .reader-header, + .reader-summary-below-image, + .reader-html, + .reader-markdown, + .article-menu-container, + .mark-as-read-container { padding-left: 2rem; padding-right: 2rem; }