From c4a6225edf17c3d6799c311e8660b59612d58f87 Mon Sep 17 00:00:00 2001 From: Avery Felts Date: Wed, 28 Jan 2026 09:17:04 -0700 Subject: [PATCH] Fix header border contrast in light and dark modes --- src/components/UserHeader.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/UserHeader.tsx b/src/components/UserHeader.tsx index b986168..085a35f 100644 --- a/src/components/UserHeader.tsx +++ b/src/components/UserHeader.tsx @@ -217,14 +217,14 @@ export function UserHeader({ user, preferences }: UserHeaderProps) { ? 'rgba(255, 255, 255, 0.98)' : 'rgba(10, 10, 20, 0.99)', backdropFilter: 'blur(16px)', - borderBottom: theme === 'light' ? '1px solid rgba(0,0,0,0.05)' : '1px solid rgba(255,255,255,0.08)' + borderBottom: theme === 'light' ? '1px solid rgba(0,0,0,0.12)' : '1px solid rgba(255,255,255,0.04)' }}> {/* Cloudy/Foggy effect overlay with tight edge feathering */}