From dd657acb241a2034ac8880acf778e28bbf39608e Mon Sep 17 00:00:00 2001 From: Christian Fehmer Date: Tue, 17 Sep 2024 09:43:27 +0200 Subject: [PATCH] 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 --- frontend/static/themes/dark_note.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/static/themes/dark_note.css b/frontend/static/themes/dark_note.css index a9ff18994..e8a268777 100644 --- a/frontend/static/themes/dark_note.css +++ b/frontend/static/themes/dark_note.css @@ -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; }