mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-30 03:43:00 +08:00
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:
parent
dd970cced7
commit
1d3abf3f43
1 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue