Skip to content

Instantly share code, notes, and snippets.

@bolmaster2
Created October 12, 2013 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bolmaster2/6953752 to your computer and use it in GitHub Desktop.
Save bolmaster2/6953752 to your computer and use it in GitHub Desktop.
rem mixins using a strip unit function
@function strip-unit($num) {
@return $num / ($num * 0 + 1);
}
@mixin rem($size: 1.6) {
font-size: ($size * 10) + px;
font-size: (($size * 10) / strip-unit($base_font_size)) + rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment