Skip to content

Commit

Permalink
add paragraph padding
Browse files Browse the repository at this point in the history
  • Loading branch information
amcdnl committed Jul 26, 2024
1 parent 2bb4a44 commit 32dae2b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Markdown/Markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export const Markdown: FC<MarkdownWrapperProps> = ({
th: props => <TableHeaderCell {...props} className="px-4 py-2 text-left font-bold border-b border-gray-500" />,
td: props => <TableDataCell {...props} className="px-4 py-2" />,
a: props => <a {...props} className="text-blue-700 underline" />,
p: props => <p {...props} className="mb-2" />
}}
>
{children as string}
Expand Down

0 comments on commit 32dae2b

Please sign in to comment.