matcha-theme 1.0.12 → 1.0.14
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/base/_helpers.scss +9 -7
- package/package.json +1 -1
package/base/_helpers.scss
CHANGED
|
@@ -731,7 +731,8 @@
|
|
|
731
731
|
$border-value: $i * 2;
|
|
732
732
|
$border-suffix: "-#{$border-value}";
|
|
733
733
|
// Gerar classes para todos os cantos
|
|
734
|
-
.border#{$infix}#{$border-suffix}
|
|
734
|
+
.border#{$infix}#{$border-suffix},
|
|
735
|
+
.b#{$infix}#{$border-suffix} {
|
|
735
736
|
border: #{$border-value}px solid!important;
|
|
736
737
|
}
|
|
737
738
|
|
|
@@ -787,21 +788,22 @@
|
|
|
787
788
|
0 #{$radius-value}px #{$radius-value}px 0
|
|
788
789
|
)
|
|
789
790
|
)
|
|
790
|
-
)
|
|
791
|
+
)!important;
|
|
791
792
|
}
|
|
792
793
|
}
|
|
793
794
|
}
|
|
794
795
|
}
|
|
796
|
+
.border-radius#{$infix}-circle,
|
|
797
|
+
.border-radius#{$infix}-full,
|
|
798
|
+
.border-radius#{$infix}-round {
|
|
799
|
+
border-radius: 999px !important;
|
|
800
|
+
}
|
|
795
801
|
}
|
|
796
802
|
}
|
|
797
803
|
}
|
|
798
804
|
@include helper-border-radius($helper-breakpoints);
|
|
799
805
|
|
|
800
|
-
|
|
801
|
-
.border-radius-full,
|
|
802
|
-
.border-radius-round {
|
|
803
|
-
border-radius: 999px !important
|
|
804
|
-
}
|
|
806
|
+
|
|
805
807
|
|
|
806
808
|
// -----------------------------------------------------------------------------------------------------
|
|
807
809
|
// @ Overflow helpers
|