matcha-core 20.214.0 → 20.216.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/core.scss +2 -2
- package/matcha-core.css +585 -31
- package/matcha-core.min.css +1 -1
- package/package.json +1 -1
package/core.scss
CHANGED
|
@@ -556,7 +556,6 @@ $base-font-size: 16px;
|
|
|
556
556
|
$infix: if($media-size == null, "", "-#{$breakpoint}");
|
|
557
557
|
|
|
558
558
|
@each $class-suffix, $value in (
|
|
559
|
-
none: none,
|
|
560
559
|
inline: inline,
|
|
561
560
|
inline-block: inline-block,
|
|
562
561
|
block: block,
|
|
@@ -565,7 +564,8 @@ $base-font-size: 16px;
|
|
|
565
564
|
table-cell: table-cell,
|
|
566
565
|
table-row: table-row,
|
|
567
566
|
inline-flex: inline-flex,
|
|
568
|
-
flex: flex
|
|
567
|
+
flex: flex,
|
|
568
|
+
none: none,
|
|
569
569
|
) {
|
|
570
570
|
.d#{$infix}-#{$class-suffix} {
|
|
571
571
|
display: $value;
|