@carbon/layout 10.25.0 → 10.27.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@carbon/layout",
3
3
  "description": "Layout helpers for digital and software products using the Carbon Design System",
4
- "version": "10.25.0",
4
+ "version": "10.27.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "module": "es/index.js",
@@ -29,8 +29,8 @@
29
29
  "clean": "rimraf es lib umd scss/generated scss/modules/generated"
30
30
  },
31
31
  "devDependencies": {
32
- "@carbon/cli": "^10.24.0",
33
- "@carbon/cli-reporter": "^10.4.0",
32
+ "@carbon/cli": "^10.25.0",
33
+ "@carbon/cli-reporter": "^10.5.0",
34
34
  "@carbon/scss-generator": "^10.13.0",
35
35
  "@carbon/test-utils": "^10.16.0",
36
36
  "core-js": "^3.6.5",
@@ -42,5 +42,5 @@
42
42
  "sassDir": "scss",
43
43
  "needs": "^1.3.0"
44
44
  },
45
- "gitHead": "d02eacdefc2c94da1b7619a20df441e264bf884c"
45
+ "gitHead": "d6041f75d05916f33380502670a56abf82b45a20"
46
46
  }
@@ -198,12 +198,12 @@ $carbon--grid-breakpoints: (
198
198
  @if $min and $max {
199
199
  $min-width: if(
200
200
  not $is-number-lower and $min,
201
- map-get($min, width + 0.02),
201
+ map-get($min, width) + 0.02,
202
202
  $min
203
203
  );
204
204
  $max-width: if(
205
205
  not $is-number-upper and $max,
206
- map-get($max, width - 0.02),
206
+ map-get($max, width) - 0.02,
207
207
  $max
208
208
  );
209
209
  @media (min-width: $min-width) and (max-width: $max-width) {