Skip to content

Instantly share code, notes, and snippets.

@tyler-paulson
Last active December 9, 2015 19:11
Show Gist options
  • Save tyler-paulson/62d2382ef9afa0ec3957 to your computer and use it in GitHub Desktop.
Save tyler-paulson/62d2382ef9afa0ec3957 to your computer and use it in GitHub Desktop.
Sass Mixin for Unset
// 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