Skip to content

Commit 1d3abf3

Browse files
authored
fix(theme): duplicate definition of fadeIn animation in dark note theme (@fehmer) (monkeytypegame#7205)
rename animations used in the dark note theme to not conflict with the `fadeIn` animation added in b9924ff
1 parent dd970cc commit 1d3abf3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

frontend/static/themes/dark_note.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ body::before {
102102
}
103103

104104
#words .typed letter {
105-
animation: toDust 200ms ease-out 0ms 1 forwards !important;
105+
animation: darkNoteToDust 200ms ease-out 0ms 1 forwards !important;
106106
}
107107
#words .typed letter::after {
108-
animation: fadeIn 100ms ease-in 100ms 1 forwards;
108+
animation: darkNoteFadeIn 100ms ease-in 100ms 1 forwards;
109109
}
110110

111111
.word letter {
@@ -154,7 +154,7 @@ hint {
154154
}
155155
}
156156

157-
@keyframes fadeIn {
157+
@keyframes darkNoteFadeIn {
158158
0% {
159159
opacity: 0;
160160
}
@@ -166,7 +166,7 @@ hint {
166166
}
167167
}
168168

169-
@keyframes toDust {
169+
@keyframes darkNoteToDust {
170170
0% {
171171
transform: scale(1);
172172
color: var(--current-color);

0 commit comments

Comments
 (0)