Skip to content

Commit

Permalink
feat(Modal): enhance full-view animation
Browse files Browse the repository at this point in the history
  • Loading branch information
YossiSaadi committed Jan 16, 2025
1 parent f9108d9 commit db96139
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/core/src/components/Modal/utils/animationVariants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,16 +113,16 @@ export const modalAnimationAnchorPopVariants: Variants = {
export const modalAnimationFullViewVariants: Variants = {
enter: {
opacity: [0.3, 1, 1],
y: [24, 24, 0],
y: [30, 0],
transition: {
duration: 0.2,
duration: 0.25,
ease: enterEase,
times: [0, 0.33, 1]
}
},
exit: {
opacity: 0,
y: 24,
y: 30,
transition: {
duration: 0.1,
ease: exitEase
Expand Down

0 comments on commit db96139

Please sign in to comment.