Skip to content

Instantly share code, notes, and snippets.

@spemer
Last active February 13, 2018 07:02
Show Gist options
  • Save spemer/af84814bd838f7348367adb48ee96d1f to your computer and use it in GitHub Desktop.
Save spemer/af84814bd838f7348367adb48ee96d1f to your computer and use it in GitHub Desktop.
@function calculateRem($size) {
$remSize: $size / 16px;
@return $remSize * 1rem;
}
@mixin font-size($size) {
font-size: $size;
font-size: calculateRem($size);
}
h1 {
@include font-size(32px);
}
p {
@include font-size(16px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment