Skip to content

Commit

Permalink
fix motion.div for ChevronsDown
Browse files Browse the repository at this point in the history
  • Loading branch information
muddlebee committed Nov 19, 2024
1 parent f343fdf commit f63c774
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,9 @@ export default function Component() {
<div className="flex justify-center -my-3 relative z-10">
<motion.div
className="p-2 rounded-lg bg-slate-700/90 backdrop-blur-sm border border-slate-600/50 shadow-lg hover:bg-slate-600/90 transition-all duration-200 cursor-pointer"
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.3, delay: 0.01 }}
whileHover={{ scale: 1.1 }}
whileTap={{ scale: 0.9 }}
>
Expand Down

0 comments on commit f63c774

Please sign in to comment.