Sha256: 880e7741518283de010093c0456c0dc64a575bccd1d9a64201a62137f3806bb3
Contents?: true
Size: 886 Bytes
Versions: 38
Compression:
Stored size: 886 Bytes
Contents
@charset "UTF-8"; /// Converts shorthand to the 4-value syntax. /// /// @param {List} $shorthand /// /// @example scss - Usage /// .element { /// margin: unpack(1em 2em); /// } /// /// @example css - CSS Output /// .element { /// margin: 1em 2em 1em 2em; /// } @function unpack($shorthand) { @if $output-bourbon-deprecation-warnings == true { @warn "[Bourbon] [Deprecation] `unpack` is deprecated and will be " + "removed in 5.0.0."; } @if length($shorthand) == 1 { @return nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1); } @else if length($shorthand) == 2 { @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 1) nth($shorthand, 2); } @else if length($shorthand) == 3 { @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 3) nth($shorthand, 2); } @else { @return $shorthand; } }
Version data entries
38 entries across 38 versions & 6 rubygems