Last active
December 9, 2015 19:11
-
-
Save tyler-paulson/62d2382ef9afa0ec3957 to your computer and use it in GitHub Desktop.
Sass Mixin for Unset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// See https://developer.mozilla.org/en-US/docs/Web/CSS/unset | |
@mixin unset($property, $fallback: initial) { | |
#{$property}: #{$fallback}; | |
#{$property}: unset; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment