Created
July 19, 2016 12:36
-
-
Save kovtunos/06f4355d24f4c3538972080d47302c02 to your computer and use it in GitHub Desktop.
Font size calculation #mixin
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
| // Font size calculation. | |
| @mixin font-size($size, $compute-line-height: false) { | |
| font-size: #{strip-unit($size)}px; | |
| font-size: rem($size); | |
| @if $compute-line-height == true { | |
| line-height: #{floor($line-height-base * $size)}px; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment