@carbon/grid 10.8.1 → 10.8.3
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 +6 -6
- package/scss/_inlined/_mixins.scss +3 -6
- package/scss/_mixins.scss +3 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/grid",
|
|
3
3
|
"description": "Grid for digital and software products using the Carbon Design System",
|
|
4
|
-
"version": "10.8.
|
|
4
|
+
"version": "10.8.3",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": "https://github.com/carbon-design-system/carbon/tree/master/packages/grid",
|
|
7
7
|
"bugs": "https://github.com/carbon-design-system/carbon/issues",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"clean": "rimraf scss/_inlined scss/vendor"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@carbon/import-once": "10.3.0",
|
|
31
|
-
"@carbon/layout": "^10.7.
|
|
30
|
+
"@carbon/import-once": "^10.3.0",
|
|
31
|
+
"@carbon/layout": "^10.7.3"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@carbon/bundler": "^10.5.
|
|
35
|
-
"rimraf": "^
|
|
34
|
+
"@carbon/bundler": "^10.5.2",
|
|
35
|
+
"rimraf": "^3.0.0"
|
|
36
36
|
},
|
|
37
37
|
"eyeglass": {
|
|
38
38
|
"exports": false,
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"sassDir": "scss",
|
|
41
41
|
"needs": "^1.3.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "8fd6caf32cedbd0a5350b7d520742e09a0acf85e"
|
|
44
44
|
}
|
|
@@ -320,12 +320,9 @@ $carbon--aspect-ratios: ((16, 9), (2, 1), (4, 3), (1, 1), (1, 2));
|
|
|
320
320
|
@include carbon--make-row();
|
|
321
321
|
}
|
|
322
322
|
|
|
323
|
-
.#{$prefix}--grid--condensed
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
.#{$prefix}--row--condensed + .#{$prefix}--row--condensed {
|
|
328
|
-
margin-top: $condensed-gutter;
|
|
323
|
+
.#{$prefix}--grid--condensed [class*='#{$prefix}--col'] {
|
|
324
|
+
padding-top: $condensed-gutter / 2;
|
|
325
|
+
padding-bottom: $condensed-gutter / 2;
|
|
329
326
|
}
|
|
330
327
|
|
|
331
328
|
@include carbon--make-grid-columns($breakpoints, $grid-gutter);
|
package/scss/_mixins.scss
CHANGED
|
@@ -320,12 +320,9 @@ $carbon--aspect-ratios: ((16, 9), (2, 1), (4, 3), (1, 1), (1, 2));
|
|
|
320
320
|
@include carbon--make-row();
|
|
321
321
|
}
|
|
322
322
|
|
|
323
|
-
.#{$prefix}--grid--condensed
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
.#{$prefix}--row--condensed + .#{$prefix}--row--condensed {
|
|
328
|
-
margin-top: $condensed-gutter;
|
|
323
|
+
.#{$prefix}--grid--condensed [class*='#{$prefix}--col'] {
|
|
324
|
+
padding-top: $condensed-gutter / 2;
|
|
325
|
+
padding-bottom: $condensed-gutter / 2;
|
|
329
326
|
}
|
|
330
327
|
|
|
331
328
|
@include carbon--make-grid-columns($breakpoints, $grid-gutter);
|