style(markdown): last thing i swear
This commit is contained in:
parent
7ef0c87ded
commit
b8a087945e
2 changed files with 17 additions and 20 deletions
|
|
@ -47,12 +47,12 @@ export const MARKDOWN_COMPONENTS = {
|
|||
/>
|
||||
),
|
||||
ul: ({ node, ...props }) => (
|
||||
<ul className="list-disc list-inside ml-4 mb-2" {...props} />
|
||||
<ul className="list-disc list-inside ml-4 mb-2 text-sm" {...props} />
|
||||
),
|
||||
ol: ({ node, ...props }) => (
|
||||
<ol className="list-decimal list-inside ml-4 mb-2" {...props} />
|
||||
<ol className="list-decimal list-inside ml-4 mb-2 text-sm" {...props} />
|
||||
),
|
||||
li: ({ node, ...props }) => <li className="mb-1" {...props} />,
|
||||
li: ({ node, ...props }) => <li className="mb-1 text-sm" {...props} />,
|
||||
strong: ({ node, ...props }) => (
|
||||
<strong className="font-semibold" {...props} />
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue