You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Components/Styles/utilities/borders/_border-width.scss

23 lines
630 B

2 years ago
$border-widths: ( "-0": 0px,"": 1px, "-2": 2px, "-4": 4px, "-8": 8px );
$border-width-directions: ("t": top, "r": right, "b": bottom, "l": left);
@each $name, $value in $border-widths {
.border#{$name} {
border-width: $value !important;
}
@each $direction, $suffix in $border-width-directions {
.border-#{$direction}#{$name} {
border-#{$suffix}-width: $value !important;
}
}
.border-x#{$name} {
border-left-width: $value !important;
border-right-width: $value !important;
}
.border-y#{$name} {
border-top-width: $value !important;
border-bottom-width: $value !important;
}
}