Skip to content

Commit

Permalink
Merge pull request #74 from Dium-dev/48-whatsappbutton
Browse files Browse the repository at this point in the history
Fix button size
  • Loading branch information
JohanMejia77 authored Nov 27, 2024
2 parents f375a44 + 73a1f64 commit b1062a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/WhatsAppButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { MdOutlineWhatsapp } from "react-icons/md";

export const WhatsAppButton = () => {
return (
<div className="w-20 h-20 rounded-full bg-[#25D366] fixed z-10 bottom-10 right-10 flex items-center justify-center cursor-pointer hover:scale-125 transition-all">
<div className="w-16 h-16 rounded-full bg-[#25D366] fixed z-10 bottom-10 right-10 flex items-center justify-center cursor-pointer hover:scale-125 transition-all">
<Link href={'https://wa.link/1rpg2h'} className="text-white" target="_blank">
<MdOutlineWhatsapp size={55} />
<MdOutlineWhatsapp size={47} />
</Link>
</div>
);
Expand Down

0 comments on commit b1062a0

Please sign in to comment.