fix: dark note theme dots being too big (@fehmer) (#5893)

Dots for correct letters are too big: 

![image](https://github.com/user-attachments/assets/35aca184-54c4-4fa6-a49c-2e5bfa0a53eb)

Signed-off-by: Christian Fehmer <cfe@sexy-developer.com>
This commit is contained in:
Christian Fehmer 2024-09-17 09:43:27 +02:00 committed by GitHub
parent c4dbaf2ec1
commit dd657acb24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -101,11 +101,10 @@ body::before {
--c-dot--error: var(--colorful-error-color);
}
#wordsWrapper .word:has(~ .active) letter {
animation: toDust 200ms ease-out 0ms 1 forwards;
#words .word:has(~ .active) letter {
animation: toDust 200ms ease-out 0ms 1 forwards !important;
}
#wordsWrapper .word:has(~ .active) letter::after {
#words .word:has(~ .active) letter::after {
animation: fadeIn 100ms ease-in 100ms 1 forwards;
}