Fix paragraph rendering on wiki
This commit is contained in:
parent
dbb3c5e32b
commit
a50eefc44e
@ -6,5 +6,9 @@ import { colors } from '../utils/colors';
|
||||
export interface MarkdownParagraphBlockProps {}
|
||||
|
||||
export const MarkdownParagraphBlock: React.StatelessComponent<MarkdownParagraphBlockProps> = ({ children }) => {
|
||||
return <span style={{ color: colors.greyTheme, lineHeight: '26px' }}>{children}</span>;
|
||||
return (
|
||||
<span style={{ color: colors.greyTheme, lineHeight: '26px', display: 'block', paddingBottom: 15 }}>
|
||||
{children}
|
||||
</span>
|
||||
);
|
||||
};
|
||||
|
@ -88,13 +88,6 @@ code {
|
||||
color: #1d5cde; // linkBlue
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4 {
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
p,
|
||||
blockquote,
|
||||
ol,
|
||||
|
Loading…
x
Reference in New Issue
Block a user