style: update header background to be more opaque with gray border

This commit is contained in:
2025-10-23 16:04:04 +02:00
parent df88c4a14f
commit 987b46588b

View File

@@ -87,7 +87,7 @@ export function Header() {
return ( return (
<motion.header <motion.header
className="fixed top-0 left-0 right-0 z-50 bg-white/10 shadow-lg ring-1 ring-white/10 backdrop-blur-sm" className="fixed top-0 left-0 right-0 z-50 bg-white/90 shadow-lg ring-1 ring-gray-200"
initial={{ y: 0, opacity: 1 }} initial={{ y: 0, opacity: 1 }}
animate={{ y: isVisible ? 0 : -100, opacity: isVisible ? 1 : 0 }} animate={{ y: isVisible ? 0 : -100, opacity: isVisible ? 1 : 0 }}
transition={{ duration: 0.3, ease: 'easeInOut' }} transition={{ duration: 0.3, ease: 'easeInOut' }}