Skip to content

Commit

Permalink
fix: slow down anim on account earnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rickimoore committed Jun 10, 2024
1 parent 6f98356 commit fc167f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AccountEarnings/EarningsLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const EarningsLayout: FC<EarningsLayoutProps> = ({ children, className }) => {
<div className={`${className || ''} w-full relative overflow-hidden`}>
<div className='w-full h-full bg-primaryBright absolute left-0 top-0 blur-3xl origin-center -rotate-45 translate-x-36 scale-125' />
<div className='z-20 w-full h-36 absolute left-0 bottom-0 bg-gradient-to-t dark:from-dark750 from-white to-transparent' />
<AnimatedHeader name="earning-layout" className="w-full h-full absolute left-0 top-0"/>
<AnimatedHeader speed={.1} name="earning-layout" className="w-full h-full absolute left-0 top-0"/>
{children}
</div>
)
Expand Down

0 comments on commit fc167f5

Please sign in to comment.