style: increase hover background opacity on nav links from 10% to 50%

This commit is contained in:
2025-10-23 14:57:34 +02:00
parent 758a004ce9
commit a3cd28fc6b

View File

@@ -41,7 +41,7 @@ function NavLinks() {
<AnimatePresence>
{hoveredIndex === index && (
<motion.span
className="absolute inset-0 rounded-lg bg-white/10"
className="absolute inset-0 rounded-lg bg-white/50"
layoutId="hoverBackground"
initial={{ opacity: 0 }}
animate={{ opacity: 1, transition: { duration: 0.15 } }}