Skip to content

Commit

Permalink
Fix dom nesting in tech page card title
Browse files Browse the repository at this point in the history
  • Loading branch information
solomonhawk committed Oct 28, 2024
1 parent b32d8e6 commit 2ff7382
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export function Section({ title, config }: Props) {
<motion.div variants={variants}>
<Card className="-mx-12 border-none sm:-mx-20">
<CardHeader className="-mt-4 !pb-0">
<CardTitle>
<h3 className="text-lg font-semibold sm:text-xl">{title}</h3>
<CardTitle className="text-lg font-semibold sm:text-xl">
{title}
</CardTitle>
</CardHeader>

Expand Down

0 comments on commit 2ff7382

Please sign in to comment.