Skip to content

Commit

Permalink
fix: Make marquee items bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
arian81 committed Dec 28, 2024
1 parent fb945a9 commit 7e9f8c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/TeamMarquee.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ const TeamMarquee = () => {
key={member.full_name}
src={image}
alt={member.full_name}
width={80}
height={80}
className="mx-2 h-16 w-16 rounded-full border-4 object-cover hover:border-blue-500 hover:shadow-xl"
width={120}
height={120}
className="mx-4 h-24 w-24 rounded-full border-4 border-[#4C1D95] object-cover hover:border-blue-500 hover:shadow-xl"
onMouseEnter={() =>
setHoveredText(
`${member.full_name}, ${member.team} ${member.emoji}`,
Expand Down

0 comments on commit 7e9f8c6

Please sign in to comment.