fix(funbox): fix animations for choo_choo and earthquake funboxes in custom mode (@ShizukoV) (#6815)

Fixed an issue where the `choo_choo` and `earthquake` funboxes did not
"work" in custom mode.

Previously, these funboxes did not "work" in custom mode. When they were
turned on, *no animations were played*. This change allows the
animations to run regardless of the mode, so users can now experience
the funboxes in custom mode as well. This change also makes sure they
work on the other modes.

### Here is a video example of the bugs and the new changes in action:


[![funboxesFixedVideo](https://img.youtube.com/vi/oF1zuqWGYnQ/0.jpg)](https://www.youtube.com/watch?v=oF1zuqWGYnQ)
This commit is contained in:
Shizuko 2025-08-04 08:11:28 -05:00 committed by GitHub
parent d9009e51cc
commit 15feb8a74a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View file

@ -16,3 +16,8 @@
--correct-letter-animation: choochoo 2s infinite linear;
--untyped-letter-animation: choochoo 2s infinite linear;
}
#words letter,
#words.withLigatures .word letter {
display: inline-block;
}

View file

@ -40,3 +40,8 @@
--incorrect-letter-animation: shake_dat_ass 0.25s infinite linear;
--extra-letter-animation: shake_dat_ass 0.25s infinite linear;
}
#words letter,
#words.withLigatures .word letter {
display: inline-block;
}