Skip to content

Commit

Permalink
Fix text overflow bug in Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
andysellick committed Nov 5, 2020
1 parent 6fa7596 commit 4fa82d4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
useful summary for people upgrading their application, not a replication
of the commit log.

## Unreleased

* Fix text overflow bug in Firefox ([PR #1764](https://github.com/alphagov/govuk_publishing_components/pull/1764))

## 23.3.0

* Change how analytics variables are passed ([PR #1762](https://github.com/alphagov/govuk_publishing_components/pull/1762))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
border-top: govuk-spacing(2) solid govuk-colour("blue");
}

.govuk-footer__list-item {
overflow: hidden; /* fix for Firefox */
break-inside: avoid-column;
-webkit-column-break-inside: avoid;
}

.gem-c-layout-footer .govuk-footer__list {
padding-bottom: govuk-spacing(7);
}

0 comments on commit 4fa82d4

Please sign in to comment.