border-variant()
Last updated
@mixin border-variant(
$size,
$style: solid,
$color: 'border',
$radius: 'border-radius',
) {
@if (string.length($size) > 0) {
&.border-#{$size} {
@include border(border-width-#{$size}, solid, $color, $radius);
}
} @else {
&.border {
@include border(border-width, solid, $color, $radius);
}
}
}
Last updated
This site uses cookies to deliver its service and to analyse traffic. By browsing this site, you accept the privacy policy.