Default to animation: false when prefers-reduced-motion is set (#9690)

* Default to `animation: false` when prefers-reduced-motion is set

* `.matches`
This commit is contained in:
Kagami Sascha Rosylight 2023-01-26 08:08:45 +01:00 committed by GitHub
parent 1d6767ef0c
commit 1959cb462b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -156,7 +156,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
animation: { animation: {
where: 'device', where: 'device',
default: true, default: !matchMedia('(prefers-reduced-motion)').matches,
}, },
animatedMfm: { animatedMfm: {
where: 'device', where: 'device',