matcha-core 19.23.0 → 19.25.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/classes-replacement.html +18 -0
- package/core.scss +17 -16
- package/matcha-core.css +3049 -169
- package/matcha-core.min.css +1 -1
- package/package.json +1 -1
package/classes-replacement.html
CHANGED
|
@@ -223,3 +223,21 @@ fazer o de : para
|
|
|
223
223
|
----------------------------------------
|
|
224
224
|
border-radius-8 | radius-8
|
|
225
225
|
one-line-text | line-clamp-1
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
flex-center => flex-justify-center
|
|
229
|
+
flex-end => flex-justify-end
|
|
230
|
+
flex-start => flex-justify-start
|
|
231
|
+
flex-inherit => flex-justify-inherit
|
|
232
|
+
flex-initial => flex-justify-initial
|
|
233
|
+
flex-left => flex-justify-left
|
|
234
|
+
flex-normal => flex-justify-normal
|
|
235
|
+
flex-revert => flex-justify-revert
|
|
236
|
+
flex-right => flex-justify-right
|
|
237
|
+
flex-space-around => flex-justify-space-around
|
|
238
|
+
flex-space-between => flex-justify-space-between
|
|
239
|
+
flex-space-evenly => flex-justify-space-evenly
|
|
240
|
+
flex-stretch => flex-justify-stretch
|
|
241
|
+
flex-unset => flex-justify-unset
|
|
242
|
+
|
|
243
|
+
|
package/core.scss
CHANGED
|
@@ -357,11 +357,11 @@ $base-font-size: 16px;
|
|
|
357
357
|
|
|
358
358
|
@for $i from 1 through $grid-length {
|
|
359
359
|
.#{$grid-prefix}#{$infix}-#{$i} {
|
|
360
|
-
flex-basis:
|
|
360
|
+
flex-basis: percentage($i / $grid-length);
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
.#{$grid-prefix}-offset#{$infix}-#{$i} {
|
|
364
|
-
margin-left:
|
|
364
|
+
margin-left: percentage($i / $grid-length);
|
|
365
365
|
}
|
|
366
366
|
}
|
|
367
367
|
@each $classLabel, $cssValue in (align-start flex-start, align-center center, align-end flex-end) {
|
|
@@ -582,20 +582,21 @@ $base-font-size: 16px;
|
|
|
582
582
|
align-self-initial: (display:flex, align-self: initial),
|
|
583
583
|
|
|
584
584
|
center-center: (display:flex, justify-content: center, align-items: center),
|
|
585
|
-
center: (display:flex, justify-content: center),
|
|
586
|
-
end: (display:flex, justify-content: flex-end),
|
|
587
|
-
start: (display:flex, justify-content: flex-start),
|
|
588
|
-
inherit: (display:flex, justify-content: inherit),
|
|
589
|
-
initial: (display:flex, justify-content: initial),
|
|
590
|
-
left: (display:flex, justify-content: left),
|
|
591
|
-
normal: (display:flex, justify-content: normal),
|
|
592
|
-
revert: (display:flex, justify-content: revert),
|
|
593
|
-
right: (display:flex, justify-content: right),
|
|
594
|
-
space-around: (display:flex, justify-content: space-around),
|
|
595
|
-
space-between: (display:flex, justify-content: space-between),
|
|
596
|
-
space-evenly: (display:flex, justify-content: space-evenly),
|
|
597
|
-
stretch: (display:flex, justify-content: stretch),
|
|
598
|
-
unset: (display:flex, justify-content: unset)
|
|
585
|
+
justify-center: (display:flex, justify-content: center),
|
|
586
|
+
justify-end: (display:flex, justify-content: flex-end),
|
|
587
|
+
justify-start: (display:flex, justify-content: flex-start),
|
|
588
|
+
justify-inherit: (display:flex, justify-content: inherit),
|
|
589
|
+
justify-initial: (display:flex, justify-content: initial),
|
|
590
|
+
justify-left: (display:flex, justify-content: left),
|
|
591
|
+
justify-normal: (display:flex, justify-content: normal),
|
|
592
|
+
justify-revert: (display:flex, justify-content: revert),
|
|
593
|
+
justify-right: (display:flex, justify-content: right),
|
|
594
|
+
justify-space-around: (display:flex, justify-content: space-around),
|
|
595
|
+
justify-space-between: (display:flex, justify-content: space-between),
|
|
596
|
+
justify-space-evenly: (display:flex, justify-content: space-evenly),
|
|
597
|
+
justify-stretch: (display:flex, justify-content: stretch),
|
|
598
|
+
justify-unset: (display:flex, justify-content: unset)
|
|
599
|
+
|
|
599
600
|
) {
|
|
600
601
|
$class-name: ".flex#{$infix}-#{$class-suffix}";
|
|
601
602
|
$class-name-force: ".flex#{$infix}-#{$class-suffix}--force";
|