Created
January 31, 2013 13:45
-
-
Save VinSpee/4682974 to your computer and use it in GitHub Desktop.
Using modular scale? Using it combined with vertical rhythm? You probably hate that your horizontal padding / margin is defined in pixels, while the rest of your stylesheet is using ems. Use this mixin to use those ms() values and convert them to ems. # USAGE padding: 0 msem(2); enjoy!
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 msem($val) { | |
@return (ms($val) / 1px) / ($base-font-size / 1px) * 1em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment