Skip to content

Commit

Permalink
Add CHANGELOG entry
Browse files Browse the repository at this point in the history
  • Loading branch information
NickColley committed May 20, 2019
1 parent 35669fc commit 38b445d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@

💥 Breaking changes:

- Remove `govuk-focusable`, `govuk-focusable-fill` mixins, introduce `govuk-focus-text` mixin.

To migrate:

For many use cases where `govuk-focusable-fill` was used you can now use `govuk-focused-text`.

Before
```scss
@include govuk-focusable-fill;
```

After
```scss
&:focus {
@include govuk-focused-text;
}
```

For the `govuk-focusable` mixin, there now is not a general on purpose mixin to replace this,
please read the new [TODO focus how to guide on the Design System website](#[TODO]).

([PR #1361](https://github.com/alphagov/govuk-frontend/pull/1361))

- Update positioning on table headers and cells to help improve readability

To migrate: If you rely on a centered certain vertical alignment, you could add
Expand Down

0 comments on commit 38b445d

Please sign in to comment.