From 95ea38d25095d5992ad3054432a510d655fcccff Mon Sep 17 00:00:00 2001 From: Mischa Date: Sun, 21 Jun 2026 20:25:02 +0200 Subject: [PATCH] fix(feed): reduce excess spacing between entries Removed redundant margin-bottom on .journal-post (feed gap already separates items). Reduced padding-bottom and gap from 3rem to 2rem, cutting the between-entry whitespace roughly in half. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01Vgmzx8VTTTmCskSpQtsLTr --- themes/intotheeast/css/style.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/themes/intotheeast/css/style.css b/themes/intotheeast/css/style.css index b3e793c..254c3f6 100644 --- a/themes/intotheeast/css/style.css +++ b/themes/intotheeast/css/style.css @@ -87,7 +87,7 @@ body::after { /* ── Feed ────────────────────────────────────────────────────────────────────── */ -.feed { display: flex; flex-direction: column; gap: var(--space-12); } +.feed { display: flex; flex-direction: column; gap: var(--space-8); } .feed-empty { color: var(--color-ink-muted); font-style: italic; } .entry-card { @@ -95,7 +95,7 @@ body::after { text-decoration: none; color: inherit; border-bottom: 1px solid var(--color-border); - padding-bottom: var(--space-12); + padding-bottom: var(--space-8); transition: background 0.15s; } @@ -162,8 +162,7 @@ body::after { .journal-post { border-bottom: 1px solid var(--color-border); - padding-bottom: var(--space-12); - margin-bottom: var(--space-12); + padding-bottom: var(--space-8); } .journal-post-header {