tiseza_oss_live/Content/sass/base/_mixins.scss

16 lines
305 B
SCSS
Raw Permalink Normal View History

2025-11-15 11:14:31 +00:00
/*
===============================
@Import Mixins
===============================
*/
// Border
$direction: '';
@mixin border($direction, $width, $style, $color) {
@if $direction == '' {
border: $width $style $color;
} @else {
border-#{$direction}: $width $style $color;
}
}