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 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Vgmzx8VTTTmCskSpQtsLTr
This commit is contained in:
2026-06-21 20:25:02 +02:00
parent 81be69f08d
commit 95ea38d250
+3 -4
View File
@@ -87,7 +87,7 @@ body::after {
/* ── Feed ────────────────────────────────────────────────────────────────────── */ /* ── 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; } .feed-empty { color: var(--color-ink-muted); font-style: italic; }
.entry-card { .entry-card {
@@ -95,7 +95,7 @@ body::after {
text-decoration: none; text-decoration: none;
color: inherit; color: inherit;
border-bottom: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
padding-bottom: var(--space-12); padding-bottom: var(--space-8);
transition: background 0.15s; transition: background 0.15s;
} }
@@ -162,8 +162,7 @@ body::after {
.journal-post { .journal-post {
border-bottom: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
padding-bottom: var(--space-12); padding-bottom: var(--space-8);
margin-bottom: var(--space-12);
} }
.journal-post-header { .journal-post-header {