diff --git a/CHANGELOG.md b/CHANGELOG.md index c0ee76ccf8..ea5f985f7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,12 @@ This will enable screen reader users to have a better, more coherent experience This was added in [pull request #2677: Amend error summary markup to fix page load focus bug in JAWS 2022](https://github.com/alphagov/govuk-frontend/pull/2677) +### Fixes + +We’ve made fixes to GOV.UK Frontend in the following pull requests: + +- [#2800: Improve Pagination component print styles](https://github.com/alphagov/govuk-frontend/pull/2800) + ## 4.3.1 (Patch release) ### Recommended changes diff --git a/src/govuk/components/pagination/_index.scss b/src/govuk/components/pagination/_index.scss index 9d99c3d824..321a5b5455 100644 --- a/src/govuk/components/pagination/_index.scss +++ b/src/govuk/components/pagination/_index.scss @@ -106,13 +106,16 @@ display: block; min-width: govuk-spacing(3); - &:after { - content: ""; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; + // Increase the touch area for the link to the parent element. + @media screen { + &:after { + content: ""; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + } } // Add link hover decoration to prev/next text if no label present on prev/next only mode