Files
2025-07-15 18:34:27 +02:00

8 lines
190 B
SCSS

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