diff --git a/src/components/PrimalMarkdown/PrimalMarkdown.module.scss b/src/components/PrimalMarkdown/PrimalMarkdown.module.scss index 7f3af7b..1aa72a9 100644 --- a/src/components/PrimalMarkdown/PrimalMarkdown.module.scss +++ b/src/components/PrimalMarkdown/PrimalMarkdown.module.scss @@ -168,6 +168,7 @@ font-weight: 400; line-height: 24px; padding-left: 12px; + padding-bottom: 0; margin-top: 0; margin-bottom: 20px; border-left: 4px solid var(--text-tertiary); @@ -200,5 +201,37 @@ del { color: inherit; } + + table { + th { + color: var(--text-primary); + font-size: 16px; + font-weight: 700; + line-height: 24px; + border-bottom: 1px solid var(--text-secondary); + padding: 12px 8px; + * { + margin-bottom: 0; + font-size: inherit; + font-weight: inherit; + line-height: inherit; + } + } + + td { + color: var(--text-primary); + font-size: 16px; + font-weight: 400; + line-height: 24px; + border-bottom: 1px solid var(--subtile-devider); + padding: 12px 8px; + * { + margin-bottom: 0; + font-size: inherit; + font-weight: inherit; + line-height: inherit; + } + } + } } }