Skip to content

Instantly share code, notes, and snippets.

View yodasw16's full-sized avatar

Dave Gillhespy yodasw16

View GitHub Profile
@VinSpee
VinSpee / msem.scss
Created January 31, 2013 13:45
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;
}