Skip to content

Commit

Permalink
Merge branch 'main' into support-classes-and-attributes-in-header-pri…
Browse files Browse the repository at this point in the history
…mary-links
  • Loading branch information
frankieroberto authored Jul 15, 2024
2 parents f19c1b3 + ab64725 commit 39c1126
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
:wrench: **Fixes**

- Change "Contact us" in the footer link examples to "Give us feedback" ([PR 972](https://github.com/nhsuk/nhsuk-frontend/pull/972))
- Remove the pattern from the date input component

:new: **New features**

Expand Down
2 changes: 1 addition & 1 deletion packages/components/date-input/template.njk
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
value: item.value,
inputmode: item.inputmode if item.inputmode else "numeric",
autocomplete: item.autocomplete,
pattern: item.pattern if item.pattern else "[0-9]*",
pattern: item.pattern,
attributes: item.attributes
}) | indent(6) | trim }}
</div>
Expand Down
4 changes: 2 additions & 2 deletions packages/core/settings/_colours.scss
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ $alpha-transparency-50: 0.5;
//

@function tint($color, $percentage) {
@return mix(white, $color, $percentage);
@return mix(white, $color, $percentage * 1%);
}

@function shade($color, $percentage) {
@return mix(black, $color, $percentage);
@return mix(black, $color, $percentage * 1%);
}

//
Expand Down

0 comments on commit 39c1126

Please sign in to comment.