matcha-core 1.0.0 → 1.0.1
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 +4 -4
- package/matcha-core.css +40 -0
- package/matcha-core.min.css +1 -1
- package/package.json +1 -1
package/core.scss
CHANGED
|
@@ -562,10 +562,10 @@ $grid-prefix: "col";
|
|
|
562
562
|
$infix: if($media-size == null, "", "-#{$breakpoint}");
|
|
563
563
|
|
|
564
564
|
@each $class-suffix, $value in (
|
|
565
|
-
row: (flex-direction: row),
|
|
566
|
-
row-reverse: (flex-direction: row-reverse),
|
|
567
|
-
column: (flex-direction: column),
|
|
568
|
-
column-reverse: (flex-direction: column-reverse),
|
|
565
|
+
row: (display:flex, flex-direction: row),
|
|
566
|
+
row-reverse: (display:flex, flex-direction: row-reverse),
|
|
567
|
+
column: (display:flex, flex-direction: column),
|
|
568
|
+
column-reverse: (display:flex, flex-direction: column-reverse),
|
|
569
569
|
|
|
570
570
|
nowrap: (flex-wrap: nowrap),
|
|
571
571
|
wrap: (flex-wrap: wrap),
|
package/matcha-core.css
CHANGED
|
@@ -53169,34 +53169,42 @@
|
|
|
53169
53169
|
}
|
|
53170
53170
|
|
|
53171
53171
|
.flex-row {
|
|
53172
|
+
display: flex;
|
|
53172
53173
|
flex-direction: row;
|
|
53173
53174
|
}
|
|
53174
53175
|
|
|
53175
53176
|
.flex-row--force {
|
|
53177
|
+
display: flex !important;
|
|
53176
53178
|
flex-direction: row !important;
|
|
53177
53179
|
}
|
|
53178
53180
|
|
|
53179
53181
|
.flex-row-reverse {
|
|
53182
|
+
display: flex;
|
|
53180
53183
|
flex-direction: row-reverse;
|
|
53181
53184
|
}
|
|
53182
53185
|
|
|
53183
53186
|
.flex-row-reverse--force {
|
|
53187
|
+
display: flex !important;
|
|
53184
53188
|
flex-direction: row-reverse !important;
|
|
53185
53189
|
}
|
|
53186
53190
|
|
|
53187
53191
|
.flex-column {
|
|
53192
|
+
display: flex;
|
|
53188
53193
|
flex-direction: column;
|
|
53189
53194
|
}
|
|
53190
53195
|
|
|
53191
53196
|
.flex-column--force {
|
|
53197
|
+
display: flex !important;
|
|
53192
53198
|
flex-direction: column !important;
|
|
53193
53199
|
}
|
|
53194
53200
|
|
|
53195
53201
|
.flex-column-reverse {
|
|
53202
|
+
display: flex;
|
|
53196
53203
|
flex-direction: column-reverse;
|
|
53197
53204
|
}
|
|
53198
53205
|
|
|
53199
53206
|
.flex-column-reverse--force {
|
|
53207
|
+
display: flex !important;
|
|
53200
53208
|
flex-direction: column-reverse !important;
|
|
53201
53209
|
}
|
|
53202
53210
|
|
|
@@ -53412,34 +53420,42 @@
|
|
|
53412
53420
|
|
|
53413
53421
|
@media screen and (min-width: 600px) {
|
|
53414
53422
|
.flex-sm-row {
|
|
53423
|
+
display: flex;
|
|
53415
53424
|
flex-direction: row;
|
|
53416
53425
|
}
|
|
53417
53426
|
|
|
53418
53427
|
.flex-sm-row--force {
|
|
53428
|
+
display: flex !important;
|
|
53419
53429
|
flex-direction: row !important;
|
|
53420
53430
|
}
|
|
53421
53431
|
|
|
53422
53432
|
.flex-sm-row-reverse {
|
|
53433
|
+
display: flex;
|
|
53423
53434
|
flex-direction: row-reverse;
|
|
53424
53435
|
}
|
|
53425
53436
|
|
|
53426
53437
|
.flex-sm-row-reverse--force {
|
|
53438
|
+
display: flex !important;
|
|
53427
53439
|
flex-direction: row-reverse !important;
|
|
53428
53440
|
}
|
|
53429
53441
|
|
|
53430
53442
|
.flex-sm-column {
|
|
53443
|
+
display: flex;
|
|
53431
53444
|
flex-direction: column;
|
|
53432
53445
|
}
|
|
53433
53446
|
|
|
53434
53447
|
.flex-sm-column--force {
|
|
53448
|
+
display: flex !important;
|
|
53435
53449
|
flex-direction: column !important;
|
|
53436
53450
|
}
|
|
53437
53451
|
|
|
53438
53452
|
.flex-sm-column-reverse {
|
|
53453
|
+
display: flex;
|
|
53439
53454
|
flex-direction: column-reverse;
|
|
53440
53455
|
}
|
|
53441
53456
|
|
|
53442
53457
|
.flex-sm-column-reverse--force {
|
|
53458
|
+
display: flex !important;
|
|
53443
53459
|
flex-direction: column-reverse !important;
|
|
53444
53460
|
}
|
|
53445
53461
|
|
|
@@ -53656,34 +53672,42 @@
|
|
|
53656
53672
|
|
|
53657
53673
|
@media screen and (min-width: 1024px) {
|
|
53658
53674
|
.flex-md-row {
|
|
53675
|
+
display: flex;
|
|
53659
53676
|
flex-direction: row;
|
|
53660
53677
|
}
|
|
53661
53678
|
|
|
53662
53679
|
.flex-md-row--force {
|
|
53680
|
+
display: flex !important;
|
|
53663
53681
|
flex-direction: row !important;
|
|
53664
53682
|
}
|
|
53665
53683
|
|
|
53666
53684
|
.flex-md-row-reverse {
|
|
53685
|
+
display: flex;
|
|
53667
53686
|
flex-direction: row-reverse;
|
|
53668
53687
|
}
|
|
53669
53688
|
|
|
53670
53689
|
.flex-md-row-reverse--force {
|
|
53690
|
+
display: flex !important;
|
|
53671
53691
|
flex-direction: row-reverse !important;
|
|
53672
53692
|
}
|
|
53673
53693
|
|
|
53674
53694
|
.flex-md-column {
|
|
53695
|
+
display: flex;
|
|
53675
53696
|
flex-direction: column;
|
|
53676
53697
|
}
|
|
53677
53698
|
|
|
53678
53699
|
.flex-md-column--force {
|
|
53700
|
+
display: flex !important;
|
|
53679
53701
|
flex-direction: column !important;
|
|
53680
53702
|
}
|
|
53681
53703
|
|
|
53682
53704
|
.flex-md-column-reverse {
|
|
53705
|
+
display: flex;
|
|
53683
53706
|
flex-direction: column-reverse;
|
|
53684
53707
|
}
|
|
53685
53708
|
|
|
53686
53709
|
.flex-md-column-reverse--force {
|
|
53710
|
+
display: flex !important;
|
|
53687
53711
|
flex-direction: column-reverse !important;
|
|
53688
53712
|
}
|
|
53689
53713
|
|
|
@@ -53900,34 +53924,42 @@
|
|
|
53900
53924
|
|
|
53901
53925
|
@media screen and (min-width: 1440px) {
|
|
53902
53926
|
.flex-lg-row {
|
|
53927
|
+
display: flex;
|
|
53903
53928
|
flex-direction: row;
|
|
53904
53929
|
}
|
|
53905
53930
|
|
|
53906
53931
|
.flex-lg-row--force {
|
|
53932
|
+
display: flex !important;
|
|
53907
53933
|
flex-direction: row !important;
|
|
53908
53934
|
}
|
|
53909
53935
|
|
|
53910
53936
|
.flex-lg-row-reverse {
|
|
53937
|
+
display: flex;
|
|
53911
53938
|
flex-direction: row-reverse;
|
|
53912
53939
|
}
|
|
53913
53940
|
|
|
53914
53941
|
.flex-lg-row-reverse--force {
|
|
53942
|
+
display: flex !important;
|
|
53915
53943
|
flex-direction: row-reverse !important;
|
|
53916
53944
|
}
|
|
53917
53945
|
|
|
53918
53946
|
.flex-lg-column {
|
|
53947
|
+
display: flex;
|
|
53919
53948
|
flex-direction: column;
|
|
53920
53949
|
}
|
|
53921
53950
|
|
|
53922
53951
|
.flex-lg-column--force {
|
|
53952
|
+
display: flex !important;
|
|
53923
53953
|
flex-direction: column !important;
|
|
53924
53954
|
}
|
|
53925
53955
|
|
|
53926
53956
|
.flex-lg-column-reverse {
|
|
53957
|
+
display: flex;
|
|
53927
53958
|
flex-direction: column-reverse;
|
|
53928
53959
|
}
|
|
53929
53960
|
|
|
53930
53961
|
.flex-lg-column-reverse--force {
|
|
53962
|
+
display: flex !important;
|
|
53931
53963
|
flex-direction: column-reverse !important;
|
|
53932
53964
|
}
|
|
53933
53965
|
|
|
@@ -54144,34 +54176,42 @@
|
|
|
54144
54176
|
|
|
54145
54177
|
@media screen and (min-width: 1920px) {
|
|
54146
54178
|
.flex-xl-row {
|
|
54179
|
+
display: flex;
|
|
54147
54180
|
flex-direction: row;
|
|
54148
54181
|
}
|
|
54149
54182
|
|
|
54150
54183
|
.flex-xl-row--force {
|
|
54184
|
+
display: flex !important;
|
|
54151
54185
|
flex-direction: row !important;
|
|
54152
54186
|
}
|
|
54153
54187
|
|
|
54154
54188
|
.flex-xl-row-reverse {
|
|
54189
|
+
display: flex;
|
|
54155
54190
|
flex-direction: row-reverse;
|
|
54156
54191
|
}
|
|
54157
54192
|
|
|
54158
54193
|
.flex-xl-row-reverse--force {
|
|
54194
|
+
display: flex !important;
|
|
54159
54195
|
flex-direction: row-reverse !important;
|
|
54160
54196
|
}
|
|
54161
54197
|
|
|
54162
54198
|
.flex-xl-column {
|
|
54199
|
+
display: flex;
|
|
54163
54200
|
flex-direction: column;
|
|
54164
54201
|
}
|
|
54165
54202
|
|
|
54166
54203
|
.flex-xl-column--force {
|
|
54204
|
+
display: flex !important;
|
|
54167
54205
|
flex-direction: column !important;
|
|
54168
54206
|
}
|
|
54169
54207
|
|
|
54170
54208
|
.flex-xl-column-reverse {
|
|
54209
|
+
display: flex;
|
|
54171
54210
|
flex-direction: column-reverse;
|
|
54172
54211
|
}
|
|
54173
54212
|
|
|
54174
54213
|
.flex-xl-column-reverse--force {
|
|
54214
|
+
display: flex !important;
|
|
54175
54215
|
flex-direction: column-reverse !important;
|
|
54176
54216
|
}
|
|
54177
54217
|
|