Skip to content

Instantly share code, notes, and snippets.

@clayb
Created April 29, 2015 19:27
Show Gist options
  • Save clayb/f3da058c4790e710d104 to your computer and use it in GitHub Desktop.
Save clayb/f3da058c4790e710d104 to your computer and use it in GitHub Desktop.
Px to EM mixin
// Mixin to convert px to em
$base-font-size: 16px;
@function em($px, $base: $base-font-size) {
@return ($px / $base) * 1em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment