Skip to content
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

fix: hover effect is added for mobile device of nav links #1685

Merged
merged 4 commits into from
Jul 13, 2023
Merged
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/MobileNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ export const MobileNavBar = () => {
<footer className="fixed bottom-1 w-1/11 left-0 right-0 bg-gray-800 text-white py-4 md:hidden rounded-xl mx-5">
<div className="container mx-auto text-xl flex justify-between items-center px-4">
<Link href="/">
<AiFillHome />
<AiFillHome className=" hover:text-primary"/>
</Link>
<Link href='/projects'>
<MdExplore />
<MdExplore className="hover:text-primary" />
</Link>
<Link href='/docs'>

<BiSolidBookBookmark />
<BiSolidBookBookmark className="hover:text-primary" />
</Link>
<Link href='https://github.com/priyankarpal/ProjectsHut'>
<FaGithub />
<FaGithub className="hover:text-primary" />
</Link>
</div>
</footer>
Expand Down