Skip to content

Instantly share code, notes, and snippets.

@VinSpee
Created January 31, 2013 13:45
Show Gist options
  • Save VinSpee/4682974 to your computer and use it in GitHub Desktop.
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!
@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