Switch to version 15: modified src/styles/animations.css

This commit is contained in:
2026-05-08 10:51:57 +00:00
parent 96cd150067
commit e26f45c249

View File

@@ -212,3 +212,18 @@
77% { opacity: 0.05; }
88% { opacity: 0; }
}
@keyframes pulse-slow {
0%, 100% {
transform: scale(1);
opacity: 0.5;
}
50% {
transform: scale(1.1);
opacity: 0.7;
}
}
.animate-pulse-slow {
animation: pulse-slow 8s infinite ease-in-out;
}