1
0

Added a fade animation in the Game styles.sass

This commit is contained in:
Mathias Wagner 2023-11-19 16:45:09 +01:00
parent 23df227fd9
commit 516a78aa7d
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -12,6 +12,19 @@
font-size: 28pt
font-weight: 700
width: 50rem
animation: fadeHint 6s ease-in-out
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)