diff --git a/CHANGELOG.md b/CHANGELOG.md index f076303c0d5..de2eb5ed089 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ## [`master`](https://github.com/elastic/eui/tree/master) -No public interface changes since `29.5.0`. +**Theme: Amsterdam** + +- Tightened `line-height` for some `EuiTitle` sizes ([4133](https://github.com/elastic/eui/pull/4133)) ## [`29.5.0`](https://github.com/elastic/eui/tree/v29.5.0) diff --git a/src/themes/eui-amsterdam/global_styling/variables/_typography.scss b/src/themes/eui-amsterdam/global_styling/variables/_typography.scss index 25e01813bf9..3760f33accf 100644 --- a/src/themes/eui-amsterdam/global_styling/variables/_typography.scss +++ b/src/themes/eui-amsterdam/global_styling/variables/_typography.scss @@ -22,7 +22,7 @@ $euiFontSizeXXL: floor($euiFontSize * 2.43); // 34px // h1 $euiTitles: ( 'xxxs': ( 'font-size': $euiFontSizeXS, - 'line-height': lineHeightFromBaseline(3), + 'line-height': lineHeightFromBaseline(2), 'font-weight': $euiFontWeightBold, ), 'xxs': ( @@ -42,12 +42,12 @@ $euiTitles: ( ), 'm': ( 'font-size': $euiFontSizeXL, - 'line-height': lineHeightFromBaseline(5), + 'line-height': lineHeightFromBaseline(4), 'font-weight': $euiFontWeightBold, ), 'l': ( 'font-size': $euiFontSizeXXL, - 'line-height': lineHeightFromBaseline(6), + 'line-height': lineHeightFromBaseline(5), 'font-weight': $euiFontWeightBold, ), );