adds delay and repeat custom prop support to base animated class

This commit is contained in:
Allan Emerson 2024-05-16 11:51:59 -05:00
parent 3f8ab233db
commit 40fa5da636

View file

@ -1,5 +1,7 @@
.animated {
animation-delay: var(--animate-delay);
animation-duration: var(--animate-duration);
animation-iteration-count: var(--animate-repeat);
animation-fill-mode: both;
}