3 /// Provides a concise, one-line method for setting `border-style` on specific
4 /// edges of a box. Use a `null` value to “skip” edges of the box with standard
7 /// @argument {list} $values
8 /// List of border styles; accepts CSS shorthand.
12 /// @include border-style(dashed null solid);
17 /// border-bottom-style: solid;
18 /// border-top-style: dashed;
21 /// @require {mixin} _directional-property
23 @mixin border-style($values) {
24 @include _directional-property(border, style, $values);