From 8d8674281a9a439c410e1dacfe45866b351f509c Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 30 Jun 2026 21:43:17 +0000 Subject: [PATCH] fix(scroll): add scroll-padding-top equal to navbar height (6.25rem) Prevents sticky navbar from covering anchor targets on smooth scroll. Co-Authored-By: Claude Sonnet 4.6 --- app/globals.css | 1 + 1 file changed, 1 insertion(+) diff --git a/app/globals.css b/app/globals.css index d5f9e85..0ea6089 100644 --- a/app/globals.css +++ b/app/globals.css @@ -14,6 +14,7 @@ html { scroll-behavior: smooth; + scroll-padding-top: 6.25rem; /* navbar height */ } body {