fix(frontend): there is insufficient padding below the code block. (#11615)

This commit is contained in:
Hiep Le 2025-11-03 21:34:01 +07:00 committed by GitHub
parent b85cc0c716
commit e51685dab4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,5 +7,5 @@ export function paragraph({
}: React.ClassAttributes<HTMLParagraphElement> &
React.HTMLAttributes<HTMLParagraphElement> &
ExtraProps) {
return <p className="pb-[10px] last:pb-0">{children}</p>;
return <p className="py-2.5 first:pt-0 last:pb-0">{children}</p>;
}