Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added footer icons hovering effect #242

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,30 +22,40 @@ const Sample = () => {
<p className="text-gray-400 text-center">
A way to share stories anonymously.
</p>
<div className="flex mt-4 space-x-4 items-baseline justify-center md:items-start md:justify-start">
<div className="flex mt-3 space-x-3 items-baseline justify-center md:items-start md:justify-start">
<a href="https://twitter.com/" target="_blank">
<FaXTwitter className="dark:text-white text-2xl" />
<div className="group px-2.5 py-2.5 border border-[#616161] rounded hover:border-opacity-10 transition-opacity duration-1000">
<FaXTwitter className="dark:text-white text-2xl group-hover:scale-125 transition-[transform] duration-300" />
</div>
</a>
<a href="https://www.instagram.com/raw_shots29/" target="_blank">
<FiInstagram className="dark:text-white text-2xl " />
<div className="group px-2.5 py-2.5 border border-[#616161] rounded hover:border-opacity-20">
<FiInstagram className="dark:text-white text-2xl group-hover:scale-125 transition-[transform] duration-300" />
</div>
</a>
<a
href="https://www.linkedin.com/in/sayak-bhunia-452419252/"
target="_blank"
>
<FaLinkedin className="dark:text-white text-2xl " />
<div className="group px-2.5 py-2.5 border border-[#616161] rounded hover:border-opacity-20">
<FaLinkedin className="dark:text-white text-2xl group-hover:scale-125 transition-[transform] duration-300" />
</div>
</a>
<a
href="https://mail.google.com/mail/?view=cm&fs=1&to=sbhunia2903@gmail.com"
target="_blank"
>
<IoMdMail className="dark:text-white text-2xl " />
<div className="group px-2.5 py-2.5 border border-[#616161] rounded hover:border-opacity-20">
<IoMdMail className="dark:text-white text-2xl group-hover:scale-125 transition-[transform] duration-300" />
</div>
</a>
<a
href="https://github.com/Sayak-Bhunia/mystory/"
target="_blank"
>
<FaGithub className="dark:text-white text-2xl " />
<div className="group px-2.5 py-2.5 border border-[#616161] rounded hover:border-opacity-20">
<FaGithub className="dark:text-white text-2xl group-hover:scale-125 transition-[transform] duration-300" />
</div>
</a>
</div>
<a
Expand Down