mirror of
https://github.com/mue/mue.git
synced 2026-07-11 18:31:47 +02:00
fix: no animations setting not working on some things
This commit is contained in:
@@ -24,9 +24,9 @@ const SortableItem = sortableElement(({ value }) => (
|
||||
</li>
|
||||
));
|
||||
|
||||
const SortableContainer = sortableContainer(({ children }) => {
|
||||
return <ul className='sortablecontainer'>{children}</ul>;
|
||||
});
|
||||
const SortableContainer = sortableContainer(({ children }) => (
|
||||
<ul className='sortablecontainer'>{children}</ul>
|
||||
));
|
||||
|
||||
export default class OrderSettings extends PureComponent {
|
||||
constructor() {
|
||||
|
||||
@@ -59,7 +59,9 @@ body {
|
||||
button,
|
||||
svg,
|
||||
input[type=text],
|
||||
.MuiSwitch-switchBase {
|
||||
.MuiSwitch-switchBase,
|
||||
.tooltipTitle,
|
||||
.quicklinks-container img {
|
||||
transition: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user