Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Last active December 15, 2015 21:39
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 miguelmota/5327815 to your computer and use it in GitHub Desktop.
Save miguelmota/5327815 to your computer and use it in GitHub Desktop.
Sass function to convert pixels to em.
// Sass function to convert pixels to em
$em-base: 16px !default;
@function emCalc($pxWidth) {
@return $pxWidth / $em-base * 1em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment