Skip to content

Instantly share code, notes, and snippets.

@munkacsitomi
Last active February 20, 2020 10:11
Show Gist options
  • Save munkacsitomi/fca54804f62484f70c310632fbdf66ec to your computer and use it in GitHub Desktop.
Save munkacsitomi/fca54804f62484f70c310632fbdf66ec to your computer and use it in GitHub Desktop.
Font-size calculator helper sass function
@function calculateRem($size) {
$remSize: $size / 16px;
@return $remSize * 1rem;
}
@mixin font-size($size) {
font-size: $size;
font-size: calculateRem($size);
}
.example {
@include font-size(14px)'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment