style: change toast life transition ease function

This commit is contained in:
p-sw 2024-05-26 20:19:51 +09:00
parent 6f23de92e7
commit dd07adc998

View File

@ -34,9 +34,9 @@ const [toastVariant] = vcn({
loading: toastColors.borders.loading, loading: toastColors.borders.loading,
}, },
life: { life: {
born: "translate-y-1/2 scale-90 ease-out", born: "translate-y-1/2 scale-90 ease-[cubic-bezier(0,.6,.7,1)]",
normal: "translate-y-0 scale-100 ease-out", normal: "translate-y-0 scale-100 ease-[cubic-bezier(0,.6,.7,1)]",
dead: "translate-y-1/2 scale-90 ease-in", dead: "translate-y-1/2 scale-90 ease-[cubic-bezier(.6,0,1,.7)]",
}, },
}, },
defaults: { defaults: {