Skip to content

Commit

Permalink
fix white bg bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jwt2706 committed Aug 6, 2024
1 parent ddce19d commit 0aaf339
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/LinksCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FaGithub, FaEnvelope } from "react-icons/fa";
export const LinksCard: FC = () => {
return (
<CardContainer className="w-full sm:w-80 p-4 sm:p-6">
<CardBody className="bg-gray-50 relative group/card dark:hover:shadow-2xl dark:hover:shadow-emerald-500/[0.1] dark:bg-black dark:border-white/[0.2] border-black/[0.1] w-full sm:w-[30rem] h-auto rounded-xl p-6 border ">
<CardBody className="bg-gray-50 relative group/card hover:shadow-2xl hover:shadow-emerald-500/[0.1] bg-black border-white/[0.2] border-black/[0.1] w-full sm:w-[30rem] h-auto rounded-xl p-6 border">
<CardItem className="text-xl mb-2 font-bold mx-auto text-neutral-600 dark:text-white">
Check out my projects, or contact me!
</CardItem>
Expand Down Expand Up @@ -40,4 +40,4 @@ export const LinksCard: FC = () => {
</CardBody>
</CardContainer>
);
}
}

0 comments on commit 0aaf339

Please sign in to comment.