From 65191256ec97f983536b50a9368a7a03e5537c48 Mon Sep 17 00:00:00 2001 From: Jonathan Hvid Date: Tue, 12 May 2026 15:32:02 +0200 Subject: [PATCH] style(roadmap): more air between nav and title MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Triple the top padding above the header (32→96px desktop, 24→72px mobile) so the title sits with more breathing room below the nav. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/pages/roadmap.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/roadmap.astro b/src/pages/roadmap.astro index 2832e3c..7e4e54d 100644 --- a/src/pages/roadmap.astro +++ b/src/pages/roadmap.astro @@ -54,7 +54,7 @@ const items = getAllRoadmapItems() text-align: center; max-width: 640px; margin: 0 auto 56px; /* generous gap to the legend */ - padding-top: 32px; + padding-top: 96px; } .roadmap-title { font-family: var(--font-serif); @@ -103,7 +103,7 @@ const items = getAllRoadmapItems() @media (max-width: 767px) { .roadmap-page { padding: 0 24px 64px; } - .roadmap-header { padding-top: 24px; margin-bottom: 40px; } + .roadmap-header { padding-top: 72px; margin-bottom: 40px; } .roadmap-title { font-size: 36px; } .roadmap-legend { margin-bottom: 12px; } .roadmap-page :global(.rr-dispatch) { margin-top: 72px; }