fix(theme): duplicate definition of fadeIn animation in dark note theme (@fehmer) (#7205)

rename animations used in the dark note theme to not conflict with the
`fadeIn` animation added in b9924ff493
This commit is contained in:
Christian Fehmer 2025-12-10 11:11:00 +01:00 committed by GitHub
parent dd970cced7
commit 1d3abf3f43
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -102,10 +102,10 @@ body::before {
}
#words .typed letter {
animation: toDust 200ms ease-out 0ms 1 forwards !important;
animation: darkNoteToDust 200ms ease-out 0ms 1 forwards !important;
}
#words .typed letter::after {
animation: fadeIn 100ms ease-in 100ms 1 forwards;
animation: darkNoteFadeIn 100ms ease-in 100ms 1 forwards;
}
.word letter {
@ -154,7 +154,7 @@ hint {
}
}
@keyframes fadeIn {
@keyframes darkNoteFadeIn {
0% {
opacity: 0;
}
@ -166,7 +166,7 @@ hint {
}
}
@keyframes toDust {
@keyframes darkNoteToDust {
0% {
transform: scale(1);
color: var(--current-color);