From 1c12fbe78389c1d280d0fcd252aff85b034732c3 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Mon, 28 Oct 2024 12:30:34 +0530 Subject: [PATCH] Fix #1793: Added animation-delay variable support --- animate.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/animate.css b/animate.css index adaab2fb3..32f8b27f1 100644 --- a/animate.css +++ b/animate.css @@ -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; }