Last active
November 14, 2024 10:13
-
-
Save 0x4248/785388f987d868587ba10d63730579c0 to your computer and use it in GitHub Desktop.
Prevent seneca from showing slow animations which can slow down productivity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setInterval(() => { | |
document.querySelectorAll("*").forEach(el => { | |
el.style.animation = "none"; | |
el.style.transition = "none"; | |
el.style.opacity = 1; // just incase an element is hidden | |
}); | |
}, 200); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment