Created
December 5, 2018 20:54
-
-
Save rochabianca/7d56b106864c6752e0611961ec0909f8 to your computer and use it in GitHub Desktop.
This file contains 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
// $pixel - number to be converted on em | |
// $context: font-size base (most browsers use 16px) | |
@function em($pixel, $context: 16) { | |
@return $pixel / $context + em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment