Skip to content

Commit b9ac742

Browse files
committed
Add slight padding to heading
1 parent 5a81384 commit b9ac742

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Headings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { PropsWithChildren } from "react"
22

33
export function H2({ children }: PropsWithChildren<unknown>) {
4-
return <h2 className="scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl">{children}</h2>
4+
return <h2 className="scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl mb-6 pt-4">{children}</h2>
55
}
66

77
export function H3({ children }: PropsWithChildren<unknown>) {

0 commit comments

Comments
 (0)