Increase line height of markdown text

Summary: Lines were a bit squashed together. Taken the value from workplace, as that's the style we've been copying so far.

Reviewed By: priteshrnandgaonkar

Differential Revision: D19430279

fbshipit-source-id: 52cc8167d6acaa6af42caaa67a693b5fda492701
This commit is contained in:
John Knox
2020-01-16 09:38:25 -08:00
committed by Facebook Github Bot
parent ce96e5efc2
commit 2f3b9e1be9

View File

@@ -19,6 +19,7 @@ const Container = styled.div({
const Row = styled.div({
marginTop: 5,
marginBottom: 5,
lineHeight: 1.34,
});
const Heading = styled.div<{level: number}>(props => ({
fontSize: props.level === 1 ? 18 : 12,