fix: scrolling effect error

This commit is contained in:
2025-11-05 17:56:25 +04:00
parent 002377a9d3
commit 81a01a5068
2 changed files with 15 additions and 4 deletions
+10
View File
@@ -729,6 +729,16 @@ input[type="number"]:focus {
color: var(--blanc-creme);
}
/* Scroll Animations */
.fade-in-element {
opacity: 0;
transform: translateY(30px);
}
.fade-in-element.animate-in {
animation: fadeInUp 0.8s ease forwards;
}
/* Animations */
@keyframes fadeInUp {
from {