8 lines
190 B
SCSS
Vendored
8 lines
190 B
SCSS
Vendored
@each $color, $value in $theme-colors {
|
|
@each $position in ['left', 'bottom'] {
|
|
.border-#{$position}-#{$color} {
|
|
border-#{$position}: .25rem solid $value !important;
|
|
}
|
|
}
|
|
}
|