Skip to content

Commit

Permalink
Improvements to layout
Browse files Browse the repository at this point in the history
  • Loading branch information
luloxi committed Nov 20, 2024
1 parent 7afb8c4 commit cfd0f35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,15 +113,15 @@ export const Footer = () => {
<footer className="sticky lg:hidden bottom-0 w-full bg-base-100 px-4 py-2 flex justify-around items-center">
<Link href="/not-found" passHref>
<EnvelopeIcon
className={`h-6 w-6 text-red-600 ${
className={`h-6 w-6 text-gray-500 ${
pathname === "/notifications" ? "text-blue-600" : "hover:text-blue-600"
}`}
/>
</Link>

<Link href="/not-found" passHref>
<BellIcon
className={`h-6 w-6 text-red-600 ${
className={`h-6 w-6 text-gray-500 ${
pathname === "/notifications" ? "text-blue-600" : "hover:text-blue-600"
}`}
/>
Expand Down

0 comments on commit cfd0f35

Please sign in to comment.