3 /// Provides a concise, one-line method for setting `margin` on specific edges
4 /// of a box. Use a `null` value to “skip” edges of the box with standard
7 /// @argument {list} $values
8 /// List of margin values; accepts CSS shorthand.
12 /// @include margin(null auto);
17 /// margin-left: auto;
18 /// margin-right: auto;
23 /// @include margin(10px 3em 20vh null);
28 /// margin-bottom: 20vh;
29 /// margin-right: 3em;
33 /// @require {mixin} _directional-property
35 @mixin margin($values) {
36 @include _directional-property(margin, null, $values);