matcha-core 1.1.6 → 1.1.8
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 +38 -26
- package/matcha-core.css +320 -0
- package/matcha-core.min.css +1 -1
- package/package.json +1 -1
package/core.scss
CHANGED
|
@@ -557,32 +557,32 @@ $helper-breakpoints: (
|
|
|
557
557
|
nowrap: (flex-wrap: nowrap),
|
|
558
558
|
wrap: (flex-wrap: wrap),
|
|
559
559
|
|
|
560
|
-
align-center: (align-items: center),
|
|
561
|
-
align-start: (align-items: flex-start),
|
|
562
|
-
align-end: (align-items: flex-end),
|
|
563
|
-
align-inherit: (align-items: inherit),
|
|
564
|
-
align-initial: (align-items: initial),
|
|
565
|
-
|
|
566
|
-
align-self-end: (align-self: flex-end),
|
|
567
|
-
align-self-start: (align-self: flex-start),
|
|
568
|
-
align-self-inherit: (align-self: inherit),
|
|
569
|
-
align-self-initial: (align-self: initial),
|
|
570
|
-
|
|
571
|
-
center-center: (justify-content: center, align-items: center),
|
|
572
|
-
center: (justify-content: center),
|
|
573
|
-
end: (justify-content: flex-end),
|
|
574
|
-
start: (justify-content: flex-start),
|
|
575
|
-
inherit: (justify-content: inherit),
|
|
576
|
-
initial: (justify-content: initial),
|
|
577
|
-
left: (justify-content: left),
|
|
578
|
-
normal: (justify-content: normal),
|
|
579
|
-
revert: (justify-content: revert),
|
|
580
|
-
right: (justify-content: right),
|
|
581
|
-
space-around: (justify-content: space-around),
|
|
582
|
-
space-between: (justify-content: space-between),
|
|
583
|
-
space-evenly: (justify-content: space-evenly),
|
|
584
|
-
stretch: (justify-content: stretch),
|
|
585
|
-
unset: (justify-content: unset)
|
|
560
|
+
align-center: (display:flex, align-items: center),
|
|
561
|
+
align-start: (display:flex, align-items: flex-start),
|
|
562
|
+
align-end: (display:flex, align-items: flex-end),
|
|
563
|
+
align-inherit: (display:flex, align-items: inherit),
|
|
564
|
+
align-initial: (display:flex, align-items: initial),
|
|
565
|
+
|
|
566
|
+
align-self-end: (display:flex, align-self: flex-end),
|
|
567
|
+
align-self-start: (display:flex, align-self: flex-start),
|
|
568
|
+
align-self-inherit: (display:flex, align-self: inherit),
|
|
569
|
+
align-self-initial: (display:flex, align-self: initial),
|
|
570
|
+
|
|
571
|
+
center-center: (display:flex, justify-content: center, align-items: center),
|
|
572
|
+
center: (display:flex, justify-content: center),
|
|
573
|
+
end: (display:flex, justify-content: flex-end),
|
|
574
|
+
start: (display:flex, justify-content: flex-start),
|
|
575
|
+
inherit: (display:flex, justify-content: inherit),
|
|
576
|
+
initial: (display:flex, justify-content: initial),
|
|
577
|
+
left: (display:flex, justify-content: left),
|
|
578
|
+
normal: (display:flex, justify-content: normal),
|
|
579
|
+
revert: (display:flex, justify-content: revert),
|
|
580
|
+
right: (display:flex, justify-content: right),
|
|
581
|
+
space-around: (display:flex, justify-content: space-around),
|
|
582
|
+
space-between: (display:flex, justify-content: space-between),
|
|
583
|
+
space-evenly: (display:flex, justify-content: space-evenly),
|
|
584
|
+
stretch: (display:flex, justify-content: stretch),
|
|
585
|
+
unset: (display:flex, justify-content: unset)
|
|
586
586
|
) {
|
|
587
587
|
$class-name: ".flex#{$infix}-#{$class-suffix}";
|
|
588
588
|
$class-name-force: ".flex#{$infix}-#{$class-suffix}--force";
|
|
@@ -1132,6 +1132,18 @@ $helper-breakpoints: (
|
|
|
1132
1132
|
}
|
|
1133
1133
|
}
|
|
1134
1134
|
}
|
|
1135
|
+
.radius#{$infix}-full {
|
|
1136
|
+
border-radius: 9999px;
|
|
1137
|
+
}
|
|
1138
|
+
.radius#{$infix}-full--force {
|
|
1139
|
+
border-radius: 9999px !important;
|
|
1140
|
+
}
|
|
1141
|
+
.radius#{$infix}-none {
|
|
1142
|
+
border-radius: 0;
|
|
1143
|
+
}
|
|
1144
|
+
.radius#{$infix}-none--force {
|
|
1145
|
+
border-radius: 0 !important;
|
|
1146
|
+
}
|
|
1135
1147
|
}
|
|
1136
1148
|
}
|
|
1137
1149
|
// Classe para borda nula
|