Skip to content

Commit

Permalink
fix: text color in light mode (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
hparashar27 authored Feb 17, 2023
1 parent b08abea commit ddc92cc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ interface FooterProps {}
export const Footer: FC<FooterProps> = ({}) => {
return (
<div className="w-full flex items-baseline justify-center z-10 gap-1 rounded-lg bg-[#ffffff0a] backdrop-blur-md sm:py-3 py-2 px-1 md:mt-4">
<p className="md:text-lg text-center text-gray-200">
<p className="md:text-lg text-center text-black dark:text-gray-100">
Open source |{" "}
<Link
href="https://github.com/rupali-codes/LinksHub/blob/main/LICENSE"
target="_blank"
>
<span className="border-b-[1px]">MIT License</span>

<span className="border-b-[1px] border-gray-900 dark:border-gray-100">MIT License</span>
</Link>{" "}
2023 LinksHub
</p>
Expand Down

1 comment on commit ddc92cc

@vercel
Copy link

@vercel vercel bot commented on ddc92cc Feb 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

linkshub – ./

linkshub-rupali-codes.vercel.app
linkshub.vercel.app
linkshub-git-main-rupali-codes.vercel.app

Please sign in to comment.