Skip to content

Commit

Permalink
Merge pull request #5278 from alphagov/fix-service-nav-toggle-spacing
Browse files Browse the repository at this point in the history
Fix service navigation mobile toggle spacing
  • Loading branch information
querkmachine authored Sep 2, 2024
2 parents 56990ac + acc9d12 commit e411d3e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ For advice on how to use these release notes see [our guidance on staying up to

## Unreleased

### Fixes

We've made fixes to GOV.UK Frontend in the following pull requests:

- [#5278: Fix service navigation mobile toggle spacing](https://github.com/alphagov/govuk-frontend/pull/5278)

## v5.6.0 (Feature release)

To install this version with npm, run `npm install govuk-frontend@5.6.0`. You can also find more information about [how to stay up to date](https://frontend.design-system.service.gov.uk/staying-up-to-date/#updating-to-the-latest-version) in our documentation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
.govuk-service-navigation__toggle {
@include govuk-font($size: 19, $weight: bold);
display: inline-flex;
margin: 0 0 govuk-spacing(2);
margin: govuk-spacing(2) 0;
padding: 0;
border: 0;
color: $govuk-service-navigation-link-colour;
Expand All @@ -117,6 +117,12 @@
&[hidden] {
display: none;
}

// If we have both a service name and navigation toggle, remove the
// margin-top so that there isn't a bunch of space between them
.govuk-service-navigation__service-name + .govuk-service-navigation__wrapper & {
margin-top: 0;
}
}

.govuk-service-navigation__list {
Expand Down

0 comments on commit e411d3e

Please sign in to comment.