Skip to content

fix: same color of social media icons into their individual color #512

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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions components/Header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const Header = () => {
target="_blank"
title="Youtube Channel"
id="youtube-channel"
className={`cursor-pointer text-[#ffffff] hover:text-[--site-theme-color] transform ease-in-out hover:-translate-y+1 hover:scale-150`}
className={`cursor-pointer text-[#ffffff] hover:text-red-600 transform ease-in-out hover:-translate-y+1 hover:scale-150`}
rel="noreferrer"
>
<RiYoutubeFill />
Expand All @@ -188,7 +188,7 @@ const Header = () => {
target="_blank"
title="Twitter Account"
id="twitter-account"
className={`cursor-pointer text-[#ffffff] hover:text-[--site-theme-color] transform ease-in-out hover:-translate-y+1 hover:scale-150`}
className={`cursor-pointer text-[#ffffff] hover:text-blue-400 transform ease-in-out hover:-translate-y+1 hover:scale-150`}
rel="noreferrer"
>
<RiTwitterFill />
Expand All @@ -199,7 +199,7 @@ const Header = () => {
target="_blank"
title="LinkedIn Account"
id="linkedin-account"
className={`cursor-pointer text-[#ffffff] hover:text-[--site-theme-color] transform ease-in-out hover:-translate-y+1 hover:scale-150`}
className={`cursor-pointer text-[#ffffff] hover:text-blue-400 transform ease-in-out hover:-translate-y+1 hover:scale-150`}
rel="noreferrer"
>
<RiLinkedinFill />
Expand Down
6 changes: 3 additions & 3 deletions components/UI/Contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const Contact = () => {

<div className={`${classes.social__links}`}>
<Link
className="hover:text-[#01d293] duration-300"
className="hover:text-red-600 duration-300"
aria-label="Youtube Channel"
href="https://youtube.com/@piyushgargdev"
target="_blank"
Expand All @@ -77,15 +77,15 @@ const Contact = () => {
<RiGithubFill />
</Link>
<Link
className="hover:text-[#01d293] duration-300"
className="hover:text-blue-400 duration-300"
aria-label="Twitter Account"
href="https://twitter.com/piyushgarg_dev"
target="_blank"
>
<RiTwitterFill />
</Link>
<Link
className="hover:text-[#01d293] duration-300"
className="hover:text-blue-400 duration-300"
aria-label="LinedIn Account"
href="https://www.linkedin.com/in/piyushgarg195/"
target="_blank"
Expand Down
4 changes: 2 additions & 2 deletions styles/contact.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
font-size: 1.3rem !important;
}

.social__links :hover {
/* .social__links :hover {
color: var(--site-theme-color);
}
} */

@media only screen and (max-width: 768px) {
.social__links {
Expand Down