diff --git a/client/src/pages/Game/states/Waiting/styles.sass b/client/src/pages/Game/states/Waiting/styles.sass index 5375192..fe242b0 100644 --- a/client/src/pages/Game/states/Waiting/styles.sass +++ b/client/src/pages/Game/states/Waiting/styles.sass @@ -17,10 +17,12 @@ span color: $primary + animation: rotateHue 5s linear infinite .info-area padding: 1rem width: 20rem + animation: bounceIn 0.7s ease-out h2 margin: 0 @@ -28,4 +30,11 @@ margin-bottom: 0 span color: $primary - font-weight: 800 \ No newline at end of file + font-weight: 800 + + +@keyframes rotateHue + 0% + filter: hue-rotate(0deg) + 100% + filter: hue-rotate(360deg) \ No newline at end of file