Created
May 19, 2014 05:46
-
-
Save torounit/2723d75eb0fd2a1c4004 to your computer and use it in GitHub Desktop.
rem Helper
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
@function rem($size) { | |
@return #{$size / $base-fontSize}rem; | |
} | |
@mixin font-size($size) { | |
font-size: $size; | |
font-size: rem($size); | |
} | |
@mixin line-height($size) { | |
line-height: $size; | |
line-height: rem($size); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment