Reduce animation intensity and remove distracting scale effects

This commit is contained in:
2025-08-04 13:29:43 -06:00
parent 7cb35b8c27
commit 5e4256cdc5
4 changed files with 7 additions and 7 deletions

View File

@@ -15,7 +15,7 @@
/* Enhanced glassmorphism hover effects */
.glass:hover,
.glass-strong:hover {
transform: translateY(-2px) scale(1.01);
transform: translateY(-2px);
box-shadow:
var(--shadow-glass),
0 0 30px rgba(59, 130, 246, 0.15);
@@ -306,6 +306,7 @@
}
.hover-lift:hover {
/* Lift effect kept for subtle movement */
transform: translateY(-4px);
}
@@ -314,7 +315,7 @@
}
.hover-scale:hover {
transform: scale(1.05);
/* Scale effect removed to avoid distracting growth */
}
.hover-glow {