Skip to content

Instantly share code, notes, and snippets.

@novrian
Created October 8, 2013 05:22
Show Gist options
  • Save novrian/6879850 to your computer and use it in GitHub Desktop.
Save novrian/6879850 to your computer and use it in GitHub Desktop.
Strip Unit SASS Function
// Thanks to @robwierzbowski on github
// See https://github.com/nex3/sass/issues/533#issuecomment-11675408
@function strip-units($value) {
@return $value / ($value * 0 + 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment