Skip to content

Commit

Permalink
fix: lineheight should be the same as fontsize
Browse files Browse the repository at this point in the history
  • Loading branch information
pksorensen committed Sep 7, 2024
1 parent 8a0417c commit cab15d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/paragraph/Paragraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const useParagraphStyles = makeStyles({
color: quickformtokens.onSurface,
fontSize: quickformtokens.questionParagraphFontSize,
fontWeight: 'unset',
lineHeight: '1.4em',
lineHeight: quickformtokens.questionParagraphFontSize, // '1.4em',
...shorthands.margin(0, 0, quickformtokens.gap1, 0),
'@media screen and (max-width: 599px)': { fontSize: quickformtokens.paragraphMobileFontSize },
},
Expand Down

0 comments on commit cab15d5

Please sign in to comment.