0
|
1 @charset "UTF-8";
|
|
2
|
|
3 /// Provides a quick method for targeting `border-style` on specific sides of a
|
|
4 /// box. Use a `null` value to “skip” a side.
|
|
5 ///
|
|
6 /// @argument {arglist} $values
|
|
7 /// List of border styles, defined as CSS shorthand.
|
|
8 ///
|
|
9 /// @example scss
|
|
10 /// .element {
|
|
11 /// @include border-style(dashed null solid);
|
|
12 /// }
|
|
13 ///
|
|
14 /// // CSS Output
|
|
15 /// .element {
|
|
16 /// border-bottom-style: solid;
|
|
17 /// border-top-style: dashed;
|
|
18 /// }
|
|
19 ///
|
|
20 /// @require {mixin} _directional-property
|
|
21
|
|
22 @mixin border-style($values...) {
|
|
23 @include _directional-property(border, style, $values...);
|
|
24 }
|