diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f71651360..6fecce7859 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +### Fixes + +We've made fixes to GOV.UK Frontend in the following pull requests: + +- [#3107: Fix focus styles for links split over multiple lines in Chromium 108+ (Chrome 108+, Edge 108+, Opera 94+)](https://github.com/alphagov/govuk-frontend/pull/3107) + ## 4.4.0 (Feature release) ### New features diff --git a/src/govuk/helpers/_focused.scss b/src/govuk/helpers/_focused.scss index 979acbe9e4..0587853513 100644 --- a/src/govuk/helpers/_focused.scss +++ b/src/govuk/helpers/_focused.scss @@ -25,4 +25,8 @@ // When link is focussed, hide the default underline since the // box shadow adds the "underline" text-decoration: none; + + // When a focused box is broken by e.g. a line break, ensure that the + // box-shadow is applied to each fragment independently. + box-decoration-break: clone; }