fix cv animations
This commit is contained in:
@@ -9,6 +9,7 @@ const AnimatePopUp = ({
|
||||
ease='elastic',
|
||||
scrollOnly=false,
|
||||
once=false,
|
||||
debugId,
|
||||
}:{
|
||||
children:ReactNode
|
||||
position:gsap.Position,
|
||||
@@ -17,9 +18,10 @@ const AnimatePopUp = ({
|
||||
ease?:gsap.EaseString|gsap.EaseFunction,
|
||||
scrollOnly?:boolean,
|
||||
once?:boolean,
|
||||
debugId?:string,
|
||||
}) => {
|
||||
return (
|
||||
<AnimatedDiv children={children} position={position} scrollOnly={scrollOnly} once={once} className={cn(className,'h-0 translate-y-[50] overflow-hidden')} height='auto' y={0} overflow='' ease={ease} duration={duration} />
|
||||
<AnimatedDiv children={children} position={position} scrollOnly={scrollOnly} once={once} debugId={debugId} className={cn(className,'h-0 translate-y-[50] overflow-hidden')} height='auto' y={0} overflow='' ease={ease} duration={duration} />
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user