Sha256: 5d736a460926deb2af212aaee90bf10fc43231b952554cbb3e986b116708b5c3
Contents?: true
Size: 498 Bytes
Versions: 4
Compression:
Stored size: 498 Bytes
Contents
@import "archetype"; // define the test function @function has-custom-output-styler($property, $value, $method: pre) { @if $property == color { @return true; } // only if it's a post processing all values @else if $property == line-height and $method == post { @return true; } @return false; } // define the custom styler @mixin custom-output-styler($property, $value, $method: pre) { #{$property}: $value; /* #{$method} override */ } .test { @include styleguide(copy); }
Version data entries
4 entries across 4 versions & 1 rubygems