Skip to content

fix: Fix change icons colour while hover on them #1976

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 2 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
13 changes: 0 additions & 13 deletions .env.example

This file was deleted.

8 changes: 4 additions & 4 deletions components/Header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,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-[--site-theme-color] transform ease-in-out hover:-translate-y+1 hover:scale-150 hover:text-[red]`}
rel="noreferrer"
>
<RiYoutubeFill />
Expand All @@ -178,7 +178,7 @@ const Header = () => {
target="_blank"
title="Github Account"
id="github-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-[#fff] transform ease-in-out hover:-translate-y+1 hover:scale-150`}
rel="noreferrer"
>
<RiGithubFill />
Expand All @@ -189,7 +189,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-[--site-theme-color] transform ease-in-out hover:-translate-y+1 hover:scale-150 `}
rel="noreferrer"
>
<NewTwitterLogo/>
Expand All @@ -200,7 +200,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-[--site-theme-color] transform ease-in-out hover:-translate-y+1 hover:scale-150 hover:text-[#0096c7]`}
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 @@ -62,15 +62,15 @@ const Contact = () => {

<div className={`${classes.social__links}`}>
<Link
className="hover:text-[#01d293] duration-300"
className=" duration-300 hover:text-[red]"
aria-label="Youtube Channel"
href="https://youtube.com/@piyushgargdev"
target="_blank"
>
<RiYoutubeFill />
</Link>
<Link
className="hover:text-[#01d293] duration-300"
className="hover:text-[#fff] duration-300"
aria-label="Github Profile"
href="https://github.com/piyushgarg-dev"
target="_blank"
Expand All @@ -87,7 +87,7 @@ const Contact = () => {
<NewTwitterLogo />
</Link>
<Link
className="hover:text-[#01d293] duration-300"
className="hover:text-[#0096c7] duration-300"
aria-label="LinedIn Account"
href="https://www.linkedin.com/in/piyushgarg195/"
target="_blank"
Expand Down
3 changes: 0 additions & 3 deletions styles/contact.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@
margin-left: 4px !important;
}

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

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