diff --git a/.changeset/chilly-yaks-hope.md b/.changeset/chilly-yaks-hope.md deleted file mode 100644 index 1a6c7097..00000000 --- a/.changeset/chilly-yaks-hope.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@primer/css": patch ---- - -Improve focus state for .SideNav and .menu diff --git a/.changeset/cyan-vans-shake.md b/.changeset/cyan-vans-shake.md deleted file mode 100644 index e2e2b1d0..00000000 --- a/.changeset/cyan-vans-shake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@primer/css": patch ---- - -Add experimental color variables. **Warning: Do not use these color variables** diff --git a/.changeset/seven-files-guess.md b/.changeset/seven-files-guess.md deleted file mode 100644 index 933ee0d3..00000000 --- a/.changeset/seven-files-guess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@primer/css": patch ---- - -Marketing: Fix letter spacing for headers not being correctly overridden at break points diff --git a/.changeset/twenty-apples-attack.md b/.changeset/twenty-apples-attack.md new file mode 100644 index 00000000..51f49148 --- /dev/null +++ b/.changeset/twenty-apples-attack.md @@ -0,0 +1,5 @@ +--- +"@primer/css": patch +--- + +Remove !important for base styles for body utilities diff --git a/CHANGELOG.md b/CHANGELOG.md index 223e0e27..101fc0b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # @primer/css +## 17.0.1 + +### Patch Changes + +- [#1391](https://github.com/primer/css/pull/1391) [`534c8f66`](https://github.com/primer/css/commit/534c8f66f5a433aaf6daa308e0354d8eeca25f3a) Thanks [@simurai](https://github.com/simurai)! - Improve focus state for .SideNav and .menu + +* [#1398](https://github.com/primer/css/pull/1398) [`5ef7bd6e`](https://github.com/primer/css/commit/5ef7bd6ef0eb43f2bb5765c0f3cfd30db3924ec4) Thanks [@colebemis](https://github.com/colebemis)! - Add experimental color variables. **Warning: Do not use these color variables** + +- [#1394](https://github.com/primer/css/pull/1394) [`42223f0b`](https://github.com/primer/css/commit/42223f0b219b6213e2d11f99988acdfd47ab9591) Thanks [@tobiasahlin](https://github.com/tobiasahlin)! - Marketing: Fix letter spacing for headers not being correctly overridden at break points + ## 17.0.0 ### Major Changes diff --git a/package.json b/package.json index f7bea4b1..a0d9d946 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@primer/css", - "version": "17.0.0", + "version": "17.0.1", "description": "The CSS implementation of GitHub's Primer Design System", "homepage": "https://primer.style/css", "author": "GitHub, Inc.", diff --git a/src/marketing/type/typography.scss b/src/marketing/type/typography.scss index c51ebe0d..b4e06443 100644 --- a/src/marketing/type/typography.scss +++ b/src/marketing/type/typography.scss @@ -72,7 +72,7 @@ font-size: map-get($pairing, "size") !important; line-height: map-get($pairing, "lh") !important; @if (map-get($pairing, "size") >= $mktg-body-spacing-threshold) { letter-spacing: $mktg-body-spacing-large !important; } - @if (map-get($pairing, "size") >= $mktg-body-weight-threshold) { font-weight: $font-weight-semibold !important; } + @if (map-get($pairing, "size") >= $mktg-body-weight-threshold) { font-weight: $font-weight-semibold; } @if (nth($sizes, 1) != nth($sizes, 2)) { @include breakpoint(md) {