@wordpress/base-styles 4.29.0 → 4.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.30.0 (2023-08-10)
6
+
5
7
  ## 4.29.0 (2023-07-20)
6
8
 
7
9
  ## 4.28.0 (2023-07-05)
package/_breakpoints.scss CHANGED
@@ -3,6 +3,7 @@
3
3
  */
4
4
 
5
5
  // Most used breakpoints
6
+ $break-xhuge: 1920px;
6
7
  $break-huge: 1440px;
7
8
  $break-wide: 1280px;
8
9
  $break-xlarge: 1080px;
package/_mixins.scss CHANGED
@@ -5,6 +5,12 @@
5
5
  * Breakpoint mixins
6
6
  */
7
7
 
8
+ @mixin break-xhuge() {
9
+ @media (min-width: #{ ($break-xhuge) }) {
10
+ @content;
11
+ }
12
+ }
13
+
8
14
  @mixin break-huge() {
9
15
  @media (min-width: #{ ($break-huge) }) {
10
16
  @content;
package/_z-index.scss CHANGED
@@ -189,6 +189,7 @@ $z-layers: (
189
189
  ".edit-site-layout__hub": 3,
190
190
  ".edit-site-layout__header": 2,
191
191
  ".edit-site-page-header": 2,
192
+ ".edit-site-page-content": 1,
192
193
  ".edit-site-patterns__header": 2,
193
194
  ".edit-site-patterns__grid-pagination": 2,
194
195
  ".edit-site-layout__canvas-container": 2,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "4.29.0",
3
+ "version": "4.30.0",
4
4
  "description": "Base SCSS utilities and variables for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -23,5 +23,5 @@
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
- "gitHead": "6f14d11ed4cb59df110a28ebaa23ecba95eb673a"
26
+ "gitHead": "b898cf1dc8e70841d1647ea0994ac6278acc18a7"
27
27
  }