Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions frontend/static/themes/dark_note.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -154,7 +154,7 @@ hint {
}
}

@keyframes fadeIn {
@keyframes darkNoteFadeIn {
0% {
opacity: 0;
}
Expand All @@ -166,7 +166,7 @@ hint {
}
}

@keyframes toDust {
@keyframes darkNoteToDust {
0% {
transform: scale(1);
color: var(--current-color);
Expand Down
Loading