From b4790a19e96a5498d3fd07a3c48e19d6a17128d5 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 19 Nov 2023 15:51:16 +0100 Subject: [PATCH] Added the bounceIn animations to the main.sass --- client/src/common/styles/main.sass | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/client/src/common/styles/main.sass b/client/src/common/styles/main.sass index d5e6ca6..e9cbaa3 100644 --- a/client/src/common/styles/main.sass +++ b/client/src/common/styles/main.sass @@ -23,4 +23,12 @@ body, html border-radius: 10px ::-webkit-scrollbar-thumb:hover - background: darken($background, 5%) \ No newline at end of file + background: darken($background, 5%) + +@keyframes bounceIn + from + transform: scale(-0.95) rotate(3deg) + 50% + transform: scale(1.02) rotate(-3deg) + to + transform: scale(1) rotate(0deg) \ No newline at end of file