From f292192e344642605c9506a29a86eadc0b3dd80b Mon Sep 17 00:00:00 2001 From: Nicholai Date: Mon, 20 Oct 2025 13:28:49 -0600 Subject: [PATCH] fix: Change banner spacing approach to preserve nav alignment - Remove CSS that moved navigation position (was causing alignment issues) - Add body padding instead to make room for banner - Navigation now stays at top:0 with proper internal alignment maintained --- app/globals.css | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/app/globals.css b/app/globals.css index 682e3b9c2..d4a9cf1fc 100644 --- a/app/globals.css +++ b/app/globals.css @@ -3,19 +3,9 @@ @custom-variant dark (&:is(.dark *)); -/* Construction banner spacing */ -body:has(.construction-banner) nav { - top: 60px !important; -} - -/* Ensure navigation content stays properly aligned when banner is present */ -body:has(.construction-banner) nav .max-w-\[1800px\] { - height: 80px; /* h-20 equivalent */ -} - -body:has(.construction-banner) nav .flex.items-center { - height: 100%; - align-items: center; +/* Construction banner spacing - push content down instead of nav */ +body:has(.construction-banner) { + padding-top: 60px; } :root {