Skip to content

Instantly share code, notes, and snippets.

@NatalieMac
Created November 24, 2013 01:33
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 NatalieMac/7622263 to your computer and use it in GitHub Desktop.
Save NatalieMac/7622263 to your computer and use it in GitHub Desktop.
converting pixels to rems
@function cr($size) {
$remSize: $size / 16px;
@return #{$remSize}rem;
}
Calling the function:
body {
font-family: $font-body;
font-size: 18px;
font-size: cr(18px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment