Skip to content

Instantly share code, notes, and snippets.

@imjakechapman
Created May 30, 2013 01:13
Show Gist options
  • Save imjakechapman/5675162 to your computer and use it in GitHub Desktop.
Save imjakechapman/5675162 to your computer and use it in GitHub Desktop.
SCSS function for converting px's into em's
@function em($target, $context: $base-font-size){
@if ($target == 0) {
@return 0;
}
@else {
@return #{$target / $context}em;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment