summaryrefslogtreecommitdiffstats
path: root/src/components/Settings/Settings.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-17 23:08:44 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-17 23:08:44 +0100
commitd42f9e348261fd1738e7977db89b06007ec8da10 (patch)
tree9aa456ecc1e5a51c64def22fd6c020aaa0d45536 /src/components/Settings/Settings.tsx
parent24d617d2ace0d68ee559ec34e888bf34493b9cf9 (diff)
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.
Diffstat (limited to 'src/components/Settings/Settings.tsx')
-rw-r--r--src/components/Settings/Settings.tsx2
1 files changed, 2 insertions, 0 deletions
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 = () => {
<CogIcon /> {t`Settings`}
</div>
<ThemeToggle />
+ <ReduceMotion />
</>
);
};