refactor(web/transitions): adjust scale fade transition timings

This commit is contained in:
Luke
2023-02-04 21:09:57 +01:00
parent 86318d5fe4
commit d50471052b

View File

@@ -7,8 +7,8 @@ const ScaleFade: React.FC<{ visible: boolean; children: React.ReactNode }> = ({
{visible && (
<motion.div
initial={{ opacity: 0, scale: 0.95 }}
animate={{ opacity: 1, scale: 1, transition: { duration: 0.1, ease: [0.4, 0, 1, 1] } }}
exit={{ opacity: 0, scale: 0.95, transition: { duration: 0.1, ease: [0, 0, 0.2, 1] } }}
animate={{ opacity: 1, scale: 1, transition: { duration: 0.2, ease: [0, 0, 0.2, 1] } }}
exit={{ opacity: 0, scale: 0.95, transition: { duration: 0.1, ease: [0.4, 0, 1, 1] } }}
>
{children}
</motion.div>