Created
September 2, 2015 15:16
-
-
Save sajhd/995a01a2920941331655 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); | |
| } | |
| /* | |
| Usage | |
| p { | |
| @include font-size(14px) | |
| } | |
| Output | |
| p { | |
| font-size: 14px; //Will be overridden if browser supports rem | |
| font-size: 0.8rem; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment