Skip to content

Instantly share code, notes, and snippets.

@anthonyshort
Created May 2, 2011 01:37
Show Gist options
  • Select an option

  • Save anthonyshort/951078 to your computer and use it in GitHub Desktop.

Select an option

Save anthonyshort/951078 to your computer and use it in GitHub Desktop.
Rem font size mixin
$base-font-size: 15px;
@mixin rem-font-size($size) {
font-size:#{$size/$base-font-size}rem;
}
body {
font-size:$base-font-size;
}
.thingy {
@include rem-font-size(21px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment