Skip to content

Instantly share code, notes, and snippets.

@rafaelrinaldi
Created February 27, 2014 23:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelrinaldi/9262030 to your computer and use it in GitHub Desktop.
Save rafaelrinaldi/9262030 to your computer and use it in GitHub Desktop.
@function remove-unit($number) {
$unit: unit($number);
$one: 1;
@if $unit == "px" { $one: 1px; }
@if $unit == "em" { $one: 1em; }
@if $unit == "%" { $one: 1%; }
@return $number / $one;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment