Increased line height on all paragraph components to 1.5 (better readability IMHO)

This commit is contained in:
Piotr Janosz
2019-08-01 19:06:14 +02:00
committed by fabioberger
parent e64754f554
commit fa4accd0c4

View File

@@ -71,7 +71,7 @@ export const Paragraph = styled.p<ParagraphProps>`
color: ${props => props.color || props.theme.paragraphColor};
opacity: ${props => (typeof props.isMuted === 'boolean' ? 0.75 : props.isMuted)};
text-align: ${props => (props.textAlign ? props.textAlign : props.isCentered && 'center')};
line-height: 1.4;
line-height: 1.5;
`;
Paragraph.defaultProps = {