Skip to content
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
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-[#FF0000] transform ease-in-out hover:-translate-y+1 hover:scale-150`}
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-[#040204] 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-[#00B6F1] 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-[#0077B5] transform ease-in-out hover:-translate-y+1 hover:scale-150`}
rel="noreferrer"
>
<RiLinkedinFill />
Expand Down
14 changes: 8 additions & 6 deletions components/UI/Contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,33 +62,35 @@ const Contact = () => {

<div className={`${classes.social__links}`}>
<Link
className="hover:text-[#01d293] duration-300"
className="hover:!text-[#FF0000] duration-300"
aria-label="Youtube Channel"
href="https://youtube.com/@piyushgargdev"
target="_blank"
>
<RiYoutubeFill />
</Link>

<Link
className="hover:text-[#01d293] duration-300"
className="hover:!text-[#040204] duration-300"
aria-label="Github Profile"
href="https://github.com/piyushgarg-dev"
target="_blank"
>
<RiGithubFill />
</Link>

<Link
className="hover:text-[#01d293] duration-300"
className="hover:!text-[#00B6F1] duration-300"
aria-label="Twitter Account"
href="https://twitter.com/piyushgarg_dev"
target="_blank"
>

<NewTwitterLogo />
</Link>

<Link
className="hover:text-[#01d293] duration-300"
aria-label="LinedIn Account"
className="hover:!text-[#0077B5] duration-300"
aria-label="LinkedIn 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 @@ -37,9 +37,9 @@
margin-left: 4px !important;
}

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

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