Added a fade animation in the Game styles.sass

This commit is contained in:
2023-11-19 16:45:09 +01:00
parent 23df227fd9
commit 516a78aa7d

@ -12,6 +12,19 @@
font-size: 28pt font-size: 28pt
font-weight: 700 font-weight: 700
width: 50rem width: 50rem
animation: fadeHint 6s ease-in-out
span span
color: $primary color: $primary
@keyframes fadeHint
0%
transform: scale(1)
65%
transform: scale(1)
70%
transform: scale(1.2)
100%
transform: scale(0.2)