From 40fa5da636af5c58a34a5916c9c60abad28bed40 Mon Sep 17 00:00:00 2001 From: Allan Emerson Date: Thu, 16 May 2024 11:51:59 -0500 Subject: [PATCH] adds delay and repeat custom prop support to base animated class --- source/_base.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/_base.css b/source/_base.css index ccbfd151c..4a481404e 100644 --- a/source/_base.css +++ b/source/_base.css @@ -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; }