Reunites the family.
Closes #17791
//
// Used in conjunction with global variables to enable certain theme features.
-@mixin border-radius($radius: $border-radius) {
- @if $enable-rounded {
- border-radius: $radius;
- }
-}
-
@mixin box-shadow($shadow...) {
@if $enable-shadows {
box-shadow: $shadow;
// Single side border-radius
+@mixin border-radius($radius: $border-radius) {
+ @if $enable-rounded {
+ border-radius: $radius;
+ }
+}
+
@mixin border-top-radius($radius) {
@if $enable-rounded {
border-top-right-radius: $radius;