Change earth icon rotation to match big globe

This commit is contained in:
2022-07-29 18:42:00 +02:00
parent 0dba9b78c3
commit 67078a282f

View File

@@ -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); }
}