Skip to content

Commit 32bc6c0

Browse files
fix(MdComponents): update top margin for Heading3
1 parent fbcee74 commit 32bc6c0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/MdComponents/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@ export const Heading3 = ({
7070
className,
7171
...rest
7272
}: HeadingProps) => (
73-
<h3 {...commonHeadingAttributes(cn("text-2xl", className), id)} {...rest}>
73+
<h3
74+
{...commonHeadingAttributes(cn("text-2xl mt-10", className), id)}
75+
{...rest}
76+
>
7477
<IdAnchor id={id} />
7578
{children}
7679
</h3>

0 commit comments

Comments
 (0)