Skip to content

Commit

Permalink
Add new feature or fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Khwa678 committed Sep 16, 2024
1 parent 6827a94 commit 58fbb38
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions components/Footer/footer.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
}

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

.nav__menu a:first-child {
color: var(--site-theme-color);
color: var();
}

.footer__creator h6 {
text-align: right;
font-weight: 400;
color: rgba(255, 255, 255, 0.852);
color: rgba(0, 84, 194, 0.852);
}

.footer__copyright p {
Expand Down
16 changes: 8 additions & 8 deletions components/UI/Contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,37 +62,37 @@ const Contact = () => {

<div className={`${classes.social__links}`}>
<Link
className="hover:text-[#01d293] duration-300"
className="hover:text-[#d20101] duration-300"
aria-label="Youtube Channel"
href="https://youtube.com/@piyushgargdev"
target="_blank"
>
<RiYoutubeFill />
<RiYoutubeFill className="hover:text-[#d20101] duration-300"/>
</Link>
<Link
className="hover:text-[#01d293] duration-300"
className="hover:text-[#e5e6e5] duration-300"
aria-label="Github Profile"
href="https://github.com/piyushgarg-dev"
target="_blank"
>
<RiGithubFill />
<RiGithubFill className="hover:text-[#e5e6e5] duration-300"/>
</Link>
<Link
className="hover:text-[#01d293] duration-300"
className="hover:text-[#1c1ccb] duration-300"
aria-label="Twitter Account"
href="https://twitter.com/piyushgarg_dev"
target="_blank"
>

<NewTwitterLogo />
<NewTwitterLogo className="hover:text-[#1c1ccb] duration-300" />
</Link>
<Link
className="hover:text-[#01d293] duration-300"
className="hover:text-[#34d9e8] duration-300"
aria-label="LinedIn Account"
href="https://www.linkedin.com/in/piyushgarg195/"
target="_blank"
>
<RiLinkedinFill />
<RiLinkedinFill className="hover:text-[#34d9e8] duration-300"/>
</Link>
</div>
</Col>
Expand Down

0 comments on commit 58fbb38

Please sign in to comment.