Skip to content

Instantly share code, notes, and snippets.

@bebaps
Created October 23, 2016 20:32
Show Gist options
  • Save bebaps/3efa87f3c71f7ee99c134f0fa3ef2fa7 to your computer and use it in GitHub Desktop.
Save bebaps/3efa87f3c71f7ee99c134f0fa3ef2fa7 to your computer and use it in GitHub Desktop.
Remove units from a value
@function remove-unit($value) {
@return $value / ($value * 0 + 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment