Skip to content

Commit

Permalink
Added hover to social icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyber-Infernox committed Feb 20, 2023
1 parent 67471e3 commit fac9a0c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions client/src/pages/Events/Footer/EventFooter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ const EventFooter = () => {
</p>

<div className="icons justify-around flex h-40 items-center text-3xl w-full">
<div className="bg-[#CAD2C5] w-12 h-12 rounded-full flex items-center justify-center shadow-2xl">
<BsFacebook className=" text-[#2F3E46] rounded-full shadow-2xl" />
<div className="bg-[#CAD2C5] w-12 h-12 rounded-full flex items-center justify-center shadow-2xl mr-2">
<BsFacebook className=" text-[#2F3E46] rounded-full shadow-2xl hover:p-[2px] cursor-pointer hover:text-blue-600" />
</div>
<div className="bg-[#CAD2C5] w-12 h-12 rounded-full flex items-center justify-center shadow-2xl">
<BsTwitter className=" text-[#2F3E46] shadow-2xl" />
<div className="bg-[#CAD2C5] w-12 h-12 rounded-full flex items-center justify-center shadow-2xl mr-2">
<BsTwitter className=" text-[#2F3E46] shadow-2xl hover:p-[2px] cursor-pointer hover:text-blue-400" />
</div>
<div className="bg-[#CAD2C5] w-12 h-12 rounded-full flex items-center justify-center shadow-2xl">
<BsLinkedin className=" text-[#2F3E46] shadow-2xl" />
<div className="bg-[#CAD2C5] w-12 h-12 rounded-full flex items-center justify-center shadow-2xl mr-2">
<BsLinkedin className=" text-[#2F3E46] shadow-2xl hover:p-[2px] cursor-pointer hover:text-blue-800" />
</div>
<div className="bg-[#CAD2C5] w-12 h-12 rounded-full flex items-center justify-center shadow-2xl">
<BsYoutube className=" text-[#2F3E46]" />
<div className="bg-[#CAD2C5] w-12 h-12 rounded-full flex items-center justify-center shadow-2xl mr-2">
<BsYoutube className=" text-[#2F3E46] hover:p-[2px] hover:text-red-900 cursor-pointer" />
</div>
</div>
</div>
Expand Down

0 comments on commit fac9a0c

Please sign in to comment.