Skip to content

Instantly share code, notes, and snippets.

@samthurman
Created May 11, 2015 15:54
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 samthurman/12009b3c16af906da00d to your computer and use it in GitHub Desktop.
Save samthurman/12009b3c16af906da00d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.2)
// ----
@function px-to-rem($size) {
$remSize: $size / 16px;
@return #{$remSize}rem;
}
h1 {
font-size: px-to-rem(18px);
}
h1 {
font-size: 1.125rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment