Last active
February 13, 2018 07:02
-
-
Save spemer/af84814bd838f7348367adb48ee96d1f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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