Skip to content

Commit

Permalink
update: animation
Browse files Browse the repository at this point in the history
  • Loading branch information
liangfung committed Nov 15, 2024
1 parent 866ef42 commit 2a16b11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ee/tabby-ui/app/(home)/components/animation-wrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ function getCardVariants(delay?: number): Variants {
return {
initial: {
opacity: 0,
y: 24,
y: 30,
transition: cardTransition
},
onscreen: {
opacity: 1,
y: 0,
transition: {
...cardTransition,
delay: 0.2 + (delay || 0)
delay: 0.3 + (delay || 0)
}
}
}
Expand Down

0 comments on commit 2a16b11

Please sign in to comment.