Skip to content

Commit 5e8451f

Browse files
committed
update: on hover styles for icons in footer
1 parent c8370d4 commit 5e8451f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/components/Footer.jsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import logo from "../../public/Images/logo.jpg";
1212
const Footer = () => {
1313
let year = new Date().getFullYear();
1414

15+
1516
return (
1617
<footer className="bg-black bottom-0 mb-6 pt-32 font-primary">
1718
<div className="flex flex-col gap-8 justify-between content-center md:flex-row">
@@ -60,7 +61,7 @@ const Footer = () => {
6061
target="_blank"
6162
>
6263
<FaTwitter size={20}
63-
className="dark:fill-white dark:hover:fill-[#1DA1F2] transition-all duration-200 ease-in-out" />
64+
className="dark:fill-white hover:fill-[#1DA1F2] transition-all duration-200 ease-in-out" />
6465
</Link>
6566
</li>
6667

@@ -75,7 +76,7 @@ const Footer = () => {
7576
rel="noopener noreferrer"
7677
>
7778
<FaLinkedinIn size={20}
78-
className="dark:hover:fill-[#0072b1] dark:fill-white transition-all duration-200 ease-in-out" />
79+
className="hover:fill-[#0072b1] dark:fill-white transition-all duration-200 ease-in-out" />
7980
</Link>
8081
</li>
8182

@@ -90,7 +91,7 @@ const Footer = () => {
9091
target="_blank"
9192
>
9293
<FaInstagram size={20}
93-
className="dark:hover:fill-[#E4405F] dark:fill-white transition-all ease-in-out duration-200" />
94+
className="hover:fill-[#E4405F] dark:fill-white transition-all ease-in-out duration-200" />
9495
</Link>
9596
</li>
9697

@@ -105,7 +106,7 @@ const Footer = () => {
105106
target="_blank"
106107
>
107108
<FaDiscord size={20}
108-
className="dark:hover:fill-[#5865F2] dark:fill-white transition-all duration-200 ease-in-out" />
109+
className="hover:fill-[#5865F2] dark:fill-white transition-all duration-200 ease-in-out" />
109110
</Link>
110111
</li>
111112
</ul>

0 commit comments

Comments
 (0)