diff --git a/CHANGELOG.md b/CHANGELOG.md index e3a6e10433..8b36df3614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,10 @@ 🔧 Fixes: +- Remove deprecated `@else-if` statement, replace with `@else if` + + ([PR #1333](https://github.com/alphagov/govuk-frontend/pull/1333)) + - Pull Request Title goes here Description goes here (optional) diff --git a/src/helpers/_typography.scss b/src/helpers/_typography.scss index 7248a83733..0947dd6fc8 100644 --- a/src/helpers/_typography.scss +++ b/src/helpers/_typography.scss @@ -142,7 +142,7 @@ font-size: $font-size-rem; // sass-lint:disable no-duplicate-properties } line-height: $line-height; - } @elseif $breakpoint == "print" { + } @else if $breakpoint == "print" { @include govuk-media-query($media-type: print) { font-size: $font-size; line-height: $line-height;