From 67e7c44e89429dd35a118e0bbd208365b4c63ad4 Mon Sep 17 00:00:00 2001 From: Miodec Date: Wed, 9 Mar 2022 14:28:43 +0100 Subject: [PATCH] reduced shake displacement --- frontend/src/styles/animations.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/styles/animations.scss b/frontend/src/styles/animations.scss index 171ec6313..259591705 100644 --- a/frontend/src/styles/animations.scss +++ b/frontend/src/styles/animations.scss @@ -54,13 +54,13 @@ @keyframes shake { 0% { - transform: translate(4px, 0) rotate(0deg); + transform: translate(2px, 0) rotate(0deg); } 50% { - transform: translate(-4px, 0) rotate(0deg); + transform: translate(-2px, 0) rotate(0deg); } 100% { - transform: translate(4px, 0) rotate(0deg); + transform: translate(2px, 0) rotate(0deg); } }