blog/themes/embark/source/css/01-tools/_tools.border.scss

11 lines
198 B
SCSS

@mixin border($color: $border-color) {
@if variable-exists(border-radius) {
border-radius: $border-radius;
}
border: $border-width solid $color;
}
.border-normal {
@include border();
}