From 6d86e8a3be683e94e49c5832b99b0371c26afd4a Mon Sep 17 00:00:00 2001 From: fef Date: Tue, 29 Nov 2022 03:32:09 +0000 Subject: [PATCH] add a little extra movement to fav animation --- .../flavours/glitch/styles/homogay/animations.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/styles/homogay/animations.scss b/app/javascript/flavours/glitch/styles/homogay/animations.scss index 7d019d2e36..06ca5bb7ba 100644 --- a/app/javascript/flavours/glitch/styles/homogay/animations.scss +++ b/app/javascript/flavours/glitch/styles/homogay/animations.scss @@ -9,7 +9,7 @@ } &.activate { & > .fa-star { - animation: spring-rotate-in .8s cubic-bezier(.2, 0, .4, 1); + animation: spring-rotate-in 1s cubic-bezier(.2, 0, .4, 1); } } } @@ -17,6 +17,9 @@ 0% { transform: rotate(0deg); } + 20% { + transform: rotate(20deg); + } 60% { transform: rotate(-380deg); }