You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
594 B
27 lines
594 B
7 years ago
|
@charset "UTF-8";
|
||
|
|
||
|
/// Provides a quick method for targeting `margin` on specific sides of a box. Use a `null` value to “skip” a side.
|
||
|
///
|
||
|
/// @param {Arglist} $vals
|
||
|
/// List of arguments
|
||
|
///
|
||
|
/// @example scss - Usage
|
||
|
/// .element {
|
||
|
/// @include margin(null 10px 3em 20vh);
|
||
|
/// }
|
||
|
///
|
||
|
/// @example css - CSS Output
|
||
|
/// .element {
|
||
|
/// margin-bottom: 3em;
|
||
|
/// margin-left: 20vh;
|
||
|
/// margin-right: 10px;
|
||
|
/// }
|
||
|
///
|
||
|
/// @require {mixin} directional-property
|
||
|
///
|
||
|
/// @output `margin`
|
||
|
|
||
|
@mixin margin($vals...) {
|
||
|
@include directional-property(margin, false, $vals...);
|
||
|
}
|