Created
October 23, 2016 20:32
-
-
Save bebaps/3efa87f3c71f7ee99c134f0fa3ef2fa7 to your computer and use it in GitHub Desktop.
Remove units from a value
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
@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