Skip to content

Instantly share code, notes, and snippets.

@nash403
Created June 6, 2017 13:49
Show Gist options
  • Save nash403/0ebc6b7e5429504683b0c225bb9a739e to your computer and use it in GitHub Desktop.
Save nash403/0ebc6b7e5429504683b0c225bb9a739e to your computer and use it in GitHub Desktop.
px to rem calculator for SASS
@function trim-unit($value) {
@return $value / ($value * 0 + 1);
}
@function rem-calc($value) { // $value is in px, returned value is in rem
@return $value / trim-unit() * 1rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment