From 3f3ee2dd827cd91b25df244c6179496a1e3ff4de Mon Sep 17 00:00:00 2001 From: David Ralph Date: Wed, 15 Sep 2021 23:27:26 +0100 Subject: [PATCH] fix: no animations setting not working on some things --- src/components/modals/main/settings/sections/Order.jsx | 6 +++--- src/scss/index.scss | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/components/modals/main/settings/sections/Order.jsx b/src/components/modals/main/settings/sections/Order.jsx index a7583974..38849b16 100644 --- a/src/components/modals/main/settings/sections/Order.jsx +++ b/src/components/modals/main/settings/sections/Order.jsx @@ -24,9 +24,9 @@ const SortableItem = sortableElement(({ value }) => ( )); -const SortableContainer = sortableContainer(({ children }) => { - return ; -}); +const SortableContainer = sortableContainer(({ children }) => ( + +)); export default class OrderSettings extends PureComponent { constructor() { diff --git a/src/scss/index.scss b/src/scss/index.scss index aaf67fb8..a5b23d3c 100644 --- a/src/scss/index.scss +++ b/src/scss/index.scss @@ -59,7 +59,9 @@ body { button, svg, input[type=text], - .MuiSwitch-switchBase { + .MuiSwitch-switchBase, + .tooltipTitle, + .quicklinks-container img { transition: none !important; } }