Skip to content

Instantly share code, notes, and snippets.

@spemer
Last active February 11, 2018 10:28
Show Gist options
  • Save spemer/5bffc280e3cc3213d02b94a3aea7a941 to your computer and use it in GitHub Desktop.
Save spemer/5bffc280e3cc3213d02b94a3aea7a941 to your computer and use it in GitHub Desktop.
// set default font-size
@function getRem($size) {
$rem: $size / 16px;
@return $rem * 1rem;
}
@mixin font-size($size) {
font-size: $size;
font-size: getRem($size);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment