Created
June 6, 2017 13:49
-
-
Save nash403/0ebc6b7e5429504683b0c225bb9a739e to your computer and use it in GitHub Desktop.
px to rem calculator for SASS
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
@function trim-unit($value) { | |
@return $value / ($value * 0 + 1); | |
} | |
@function rem-calc($value) { // $value is in px, returned value is in rem | |
@return $value / trim-unit() * 1rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment