Skip to content

Instantly share code, notes, and snippets.

@cange
Created June 26, 2013 14:44
Show Gist options
  • Save cange/5867943 to your computer and use it in GitHub Desktop.
Save cange/5867943 to your computer and use it in GitHub Desktop.
Sass pixel to rem unit converter set by Nicole O'Sullivan
// converting a px based font-size to rem
@function calculate-rem($size) {
$rem-size: $size / $default-font-size;
@return #{ $rem-size }rem;
}
@mixin font-size($size) {
font-size: $size;
font-size: calcuate-rem($size);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment