Fix paragraph rendering on wiki

This commit is contained in:
Fabio Berger 2019-02-06 14:08:45 +00:00
parent dbb3c5e32b
commit a50eefc44e
2 changed files with 5 additions and 8 deletions

View File

@ -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>
);
};

View File

@ -88,13 +88,6 @@ code {
color: #1d5cde; // linkBlue
}
h1,
h2,
h3,
h4 {
padding-top: 15px;
}
p,
blockquote,
ol,