Skip to content

Commit

Permalink
refactor: change animation timing
Browse files Browse the repository at this point in the history
  • Loading branch information
Quiddlee committed Jan 7, 2024
1 parent 601011d commit 7fb3875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ViewList/ui/ViewItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const animations = {
initial: { scale: 0, opacity: 0 },
animate: { scale: 1, opacity: 1 },
exit: { scale: 0, opacity: 0 },
transition: { type: 'spring', stiffness: 600, damping: 40 },
transition: { type: 'spring', stiffness: 550, damping: 40 },
};

const ViewItem: FC<TabItemProps> = ({ children, id, onClick }) => {
Expand Down

0 comments on commit 7fb3875

Please sign in to comment.