Skip to content

Commit

Permalink
Merge pull request #4559 from alphagov/fix-missing-ie8-mixin-workaround
Browse files Browse the repository at this point in the history
Update CHANGELOG with a working workaroud for removal of govuk-if-ie8
  • Loading branch information
36degrees committed Dec 13, 2023
2 parents 8d5b785 + 9fbc432 commit b44d7b0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,11 @@ If a library you depend on is not yet updated and relies on these mixins and var
```scss
$govuk-is-ie8: false;
$govuk-ie8-breakpoint: ('desktop');
@mixin govuk-if-ie8 {}
@mixin govuk-if-ie8 {
@if false {
@content;
}
}
@mixin govuk-not-ie8 {@content}
```

Expand Down

0 comments on commit b44d7b0

Please sign in to comment.