3 /// Provides a concise, one-line method for setting `border-color` 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 colors; accepts CSS shorthand.
12 /// @include border-color(#a60b55 #76cd9c null #e8ae1a);
17 /// border-left-color: #e8ae1a;
18 /// border-right-color: #76cd9c;
19 /// border-top-color: #a60b55;
22 /// @require {mixin} _directional-property
24 @mixin border-color($values) {
25 @include _directional-property(border, color, $values);