Skip to content

Commit

Permalink
feat(section-heading): add line-height high-density support
Browse files Browse the repository at this point in the history
  • Loading branch information
cf-remylenoir committed Jan 12, 2024
1 parent 476812b commit 0f1c043
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function _SectionHeading<
fontWeight="fontWeightDemiBold"
fontColor="gray900"
fontSize={density === 'high' ? 'fontSizeSHigh' : 'fontSizeS'}
lineHeight="lineHeightS"
lineHeight={density === 'high' ? 'lineHeightSHigh' : 'lineHeightS'}
className={cx(
css({
letterSpacing: tokens.letterSpacingWide,
Expand Down

0 comments on commit 0f1c043

Please sign in to comment.