fix(theme): dark note and reduced-motion not replacing letters with circles (@fehmer) (#6589)

This commit is contained in:
Christian Fehmer 2025-05-26 16:02:15 +02:00 committed by GitHub
parent a9fb72de7c
commit 4fe11aceee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -142,6 +142,18 @@ hint {
opacity: 0;
}
@media (prefers-reduced-motion) {
#words .word:has(~ .active) letter {
animation: none !important;
transform: scale(0.4);
color: transparent;
}
#words .word:has(~ .active) letter::after {
animation: none !important;
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;