Skip to content

Commit

Permalink
fix: markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
whes1015 committed Dec 13, 2024
1 parent 32881c0 commit d57e27c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/BlogContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,23 +49,23 @@ export function BlogContent({
h1: ({ node, children }) => (
<h1
id={node.position?.start.line.toString()}
className="text-2xl font-bold my-4"
className="text-6xl font-black my-4"
>
{children}
</h1>
),
h2: ({ node, children }) => (
<h2
id={node.position?.start.line.toString()}
className="text-xl font-bold my-3"
className="text-4xl font-bold my-3"
>
{children}
</h2>
),
h3: ({ node, children }) => (
<h3
id={node.position?.start.line.toString()}
className="text-lg font-bold my-2"
className="text-2xl font-medium my-2"
>
{children}
</h3>
Expand Down

0 comments on commit d57e27c

Please sign in to comment.