fix: fix linebreaks in multiparagraph field descriptions

This commit is contained in:
Roman Hotsiy 2018-08-06 15:19:09 +03:00
parent f70ac081fe
commit 8fb9cd6bac
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0

View File

@ -26,16 +26,21 @@ export const StyledMarkdownBlock = withProps<{ dense?: boolean; inline?: boolean
line-height: ${props => props.theme.typography.lineHeight}; line-height: ${props => props.theme.typography.lineHeight};
p { p {
&:last-of-type { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
} }
${({ dense }) => ${({ dense }) =>
dense && dense &&
` p { `
margin: 0; p:first-child {
}`} margin-top: 0;
}
p:last-child {
margin-bottom: 0;
}
`}
${({ inline }) => ${({ inline }) =>
inline && inline &&
@ -108,9 +113,9 @@ export const StyledMarkdownBlock = withProps<{ dense?: boolean; inline?: boolean
padding-left: 2em; padding-left: 2em;
margin: 0; margin: 0;
margin-bottom: 1em; margin-bottom: 1em;
> li { // > li {
margin: 1em 0; // margin: 0.5em 0;
} // }
} }
table { table {