Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
bigalex2k committed Jul 18, 2024
1 parent f0e28a1 commit fe0bd1b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/transiton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ const transition = (OgComponent: any) => {
transition={{ duration: 1, ease: [0.22,1,0.36,1]}}>
</motion.div>
<motion.div
className="slide-out"
initial={{scaleY: 1}}
animate={{scaleY: 0}}
exit={{scaleY: 0}}
transition={{ duration: 1, ease: [0.22,1,0.36,1] }} >
className="slide-out"
initial={{scaleY: 1}}
animate={{scaleY: 0}}
exit={{scaleY: 0}}
transition={{ duration: 1, ease: [0.22,1,0.36,1] }} >
</motion.div>
</>
);
Expand Down

0 comments on commit fe0bd1b

Please sign in to comment.