From c51a958cbff824bec265541d3f71f3830dc6cd92 Mon Sep 17 00:00:00 2001 From: jamesvici Date: Tue, 15 Sep 2026 19:59:40 -0400 Subject: [PATCH] Widen the gap between listing items .post/.hentry margin-bottom goes from the theme's 20px to 50px, giving about 72px between items once the heading margins and the clearing
are counted. Co-Authored-By: Claude Opus 5 --- src/styles/global.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/global.css b/src/styles/global.css index fbd74da..3a9b5f1 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -1144,7 +1144,8 @@ h3.arc-src { .post, .hentry, .no-results { - margin-bottom: 20px; + /* Theme default was 20px; widened to give listing items clearer separation. */ + margin-bottom: 50px; }