Skip to content

Instantly share code, notes, and snippets.

@kovtunos
Created July 19, 2016 12:36
Show Gist options
  • Select an option

  • Save kovtunos/06f4355d24f4c3538972080d47302c02 to your computer and use it in GitHub Desktop.

Select an option

Save kovtunos/06f4355d24f4c3538972080d47302c02 to your computer and use it in GitHub Desktop.
Font size calculation #mixin
// 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