Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ For advice on how to use these release notes, see [our guidance on staying up to
We've made fixes to GOV.UK Frontend in the following pull requests:

- [#6351: Preserve already escaped `attributes` values to prevent double escaping](https://github.com/alphagov/govuk-frontend/pull/6351) thanks to @colinrotherham for fixing this issue
- [#6454: Prevent date inputs shifting alignment on iOS 18](https://github.com/alphagov/govuk-frontend/pull/6454) – thanks to @rowellx68 for reporting this issue and @colinrotherham for suggesting the fix.

## v6.0.0-beta.1 (Beta breaking release)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
display: inline-block;
margin-right: govuk-spacing(4);
margin-bottom: 0;

// Prevents an issue in iOS Safari 18 where the items vertically
// shift when the value of inputs is changed.
// https://github.com/alphagov/reported-bugs/issues/90
vertical-align: bottom;
}

.govuk-date-input__label {
Expand Down