Fix #1793: Added animation-delay variable support

This commit is contained in:
Abhijeet Singh 2024-10-28 12:30:34 +05:30
parent 3f8ab233db
commit 1c12fbe783

2
animate.css vendored
View file

@ -17,6 +17,8 @@
animation-duration: 1s;
-webkit-animation-duration: var(--animate-duration);
animation-duration: var(--animate-duration);
-webkit-animation-delay: var(--animate-delay);
animation-delay: var(--animate-delay);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}