From 67078a282f90781502398f7157074241f0a6a802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Fri, 29 Jul 2022 18:42:00 +0200 Subject: [PATCH] Change earth icon rotation to match big globe --- src/style/_animations.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/style/_animations.scss b/src/style/_animations.scss index 1507518..33f9e1b 100644 --- a/src/style/_animations.scss +++ b/src/style/_animations.scss @@ -2,9 +2,9 @@ ** Earth icon */ .anim-earth { - animation: moveEarth 3.5s linear infinite; + animation: moveEarth 4s linear infinite; } @keyframes moveEarth { - 0% { transform: translate3d(0,0,0); } - 100% { transform: translate3d(-87px, 0, 0); } + 0% { transform: translate3d(-87px, 0, 0); } + 100% { transform: translate3d(0,0,0); } } \ No newline at end of file