Web: Common: deleted animation

This commit is contained in:
Viktor Fomin 2020-11-24 17:26:50 +03:00
parent d53d6484d8
commit 727532f40e

View File

@ -24,7 +24,7 @@ const StyledCircle = styled.div`
} }
.circle__fill { .circle__fill {
animation: fill-rotate ease-in-out 5s; animation: fill-rotate ease-in-out none;
transform: rotate(${(props) => props.percent * 1.8}deg); transform: rotate(${(props) => props.percent * 1.8}deg);
} }
@ -34,7 +34,7 @@ const StyledCircle = styled.div`
} }
.circle__mask.circle__full { .circle__mask.circle__full {
animation: fill-rotate ease-in-out 5s; animation: fill-rotate ease-in-out none;
transform: rotate(${(props) => props.percent * 1.8}deg); transform: rotate(${(props) => props.percent * 1.8}deg);
} }