diff --git a/src/components/buttons/unselect/unselect.tsx b/src/components/buttons/unselect/unselect.tsx index 670952d..05e1d70 100644 --- a/src/components/buttons/unselect/unselect.tsx +++ b/src/components/buttons/unselect/unselect.tsx @@ -15,7 +15,10 @@ export function UnselectButton() { const hasHistory = useSoundStore(state => !!state.history); const unselectAll = useSoundStore(state => state.unselectAll); - const variants = mix(fade(), slideX(10)); + const variants = { + ...mix(fade(), slideX(15)), + exit: { opacity: 0 }, + }; return ( <> @@ -23,7 +26,7 @@ export function UnselectButton() { {(!noSelected || hasHistory) && (