Skip to content

Instantly share code, notes, and snippets.

@simondell
Last active December 17, 2015 13:49
Show Gist options
  • Save simondell/5619742 to your computer and use it in GitHub Desktop.
Save simondell/5619742 to your computer and use it in GitHub Desktop.
SASS Mixin for writing out equivalent font-sizes in px and rem units. Copied from somewhere. Probably Chris Coyler's CSS-Tricks.
// Calculate px and rem font-sizes
// - assumes html { font-size: 10px; }
@mixin font-size( $size ) {
$pixels: #{$size}px;
$rems: #{$size/10}rem;
font-size: $pixels;
font-size: $rems;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment