From d42f9e348261fd1738e7977db89b06007ec8da10 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 17 Jan 2022 23:08:44 +0100 Subject: feat: add a setting to disable animations and transitions Some users may not know the reduced motion settings, so I provide an option directly on the website to disable animations. --- src/components/Settings/Settings.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/components/Settings/Settings.tsx') diff --git a/src/components/Settings/Settings.tsx b/src/components/Settings/Settings.tsx index 7d5516c..bd2f33d 100644 --- a/src/components/Settings/Settings.tsx +++ b/src/components/Settings/Settings.tsx @@ -1,6 +1,7 @@ import { CogIcon } from '@components/Icons'; import ThemeToggle from '@components/Settings/ThemeToggle/ThemeToggle'; import { t } from '@lingui/macro'; +import ReduceMotion from './ReduceMotion/ReduceMotion'; import styles from './Settings.module.scss'; const Settings = () => { @@ -10,6 +11,7 @@ const Settings = () => { {t`Settings`} + ); }; -- cgit v1.2.3