Last active
January 18, 2016 22:14
-
-
Save shaharhesse/a60e175a660372bbd9a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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