das

Results 2 comments of das

Copying my comments over from the other issue: I'm having the same issue. Here's a slightly smaller reproduction of the issue: [REPL](https://svelte.dev/repl/30758cf0f5ed4a0bb319c0a88b4cf121?version=3.8.1) I updated the REPL after a discovery: the...

Needs this added (after settings modal): ```javascript document.addEventListener('DOMContentLoaded', function(event) { const query = '(prefers-reduced-motion: reduce)' const hasOSReducedMotion = window.matchMedia(query).matches if (hasOSReducedMotion) { // set animations setting to off } })...