Skip to content

Instantly share code, notes, and snippets.

@shaharhesse
Last active January 18, 2016 22:14
Show Gist options
  • Save shaharhesse/a60e175a660372bbd9a6 to your computer and use it in GitHub Desktop.
Save shaharhesse/a60e175a660372bbd9a6 to your computer and use it in GitHub Desktop.
// convert px value to em
// second variable $current is optional
// set $base-font-size to the base font-size of your doc
$base-font-size: 16
// mixin
@mixin px-to-em( $target, $current: $base-font-size )
font-size: $target/$current + em
// function
@function px-to-em( $target, $current: $base-font-size )
@return $target/$current + em
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment