Skip to content

Commit

Permalink
Fix for select height zoom problem
Browse files Browse the repository at this point in the history
  • Loading branch information
andysellick committed Aug 2, 2019
1 parent 9c4570b commit cf41edd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@
## Unreleased

* Add tests for email feedback form (PR #1017)
* Fix for select height zoom problem (PR #1018)

## 17.20.0

* Add full width option to select component (PR #1012)
* Change statistics header link to link to new finder (PR #1015)

## 17.19.1

* Replace subscription links images with SVG (PR #1008)
* Change subscription links CSS (PR #1007)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@
.gem-c-select__select--full-width {
width: 100%;
}

// Solution to text inside selects becoming unreadable if font size in
// the browser is increased. This is currently a problem in govuk-frontend
.gem-c-select {
.govuk-select {
height: 2.14em;
}
}

0 comments on commit cf41edd

Please sign in to comment.