From 516a78aa7de145dd7d476847c059b73dfcb08175 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 19 Nov 2023 16:45:09 +0100 Subject: [PATCH] Added a fade animation in the Game styles.sass --- client/src/pages/Game/styles.sass | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/client/src/pages/Game/styles.sass b/client/src/pages/Game/styles.sass index 0948bd8..2cc66dd 100644 --- a/client/src/pages/Game/styles.sass +++ b/client/src/pages/Game/styles.sass @@ -12,6 +12,19 @@ font-size: 28pt font-weight: 700 width: 50rem + animation: fadeHint 6s ease-in-out + span - color: $primary \ No newline at end of file + color: $primary + + +@keyframes fadeHint + 0% + transform: scale(1) + 65% + transform: scale(1) + 70% + transform: scale(1.2) + 100% + transform: scale(0.2) \ No newline at end of file