From 9f82a7c67a6abe2e5c54d7026d6d86be9255a178 Mon Sep 17 00:00:00 2001 From: Viktor Fomin Date: Fri, 20 Nov 2020 16:19:43 +0300 Subject: [PATCH] Web: Common: fixed animation time --- .../src/components/FloatingButton/StyledFloatingButton.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/ASC.Web.Common/src/components/FloatingButton/StyledFloatingButton.js b/web/ASC.Web.Common/src/components/FloatingButton/StyledFloatingButton.js index f0ab59e678..e6da3f2aa1 100644 --- a/web/ASC.Web.Common/src/components/FloatingButton/StyledFloatingButton.js +++ b/web/ASC.Web.Common/src/components/FloatingButton/StyledFloatingButton.js @@ -24,7 +24,7 @@ const StyledCircle = styled.div` } .circle__fill { - animation: fill-rotate ease-in-out 3s; + animation: fill-rotate ease-in-out 5s; transform: rotate(${(props) => props.percent * 1.8}deg); } @@ -34,7 +34,7 @@ const StyledCircle = styled.div` } .circle__mask.circle__full { - animation: fill-rotate ease-in-out 3s; + animation: fill-rotate ease-in-out 5s; transform: rotate(${(props) => props.percent * 1.8}deg); }