From 31af7f5425fa33565389cf54a4e0f47256b392e5 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Tue, 30 Sep 2025 01:11:18 -0700 Subject: [PATCH] add bottom padding to main content for better scroll UX --- src/routes/+layout.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 35dd3c17..a3644abd 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -220,6 +220,7 @@ overflow-x: hidden; position: relative; padding-top: 81px; // Space for fixed navigation (matches $nav-height) + padding-bottom: 20vh; // Extra space at bottom for comfortable scrolling z-index: 2; // Ensure scrollbar is above blur background // Note: scroll-behavior removed to prevent unwanted animations