Created
August 1, 2018 16:09
-
-
Save calvindavis/8367984d34731adc5ea31fed22694e64 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
> 1% | |
last 2 versions |
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
// ---- | |
// Sass (v3.4.25) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin font-size($font-size, $line-height: null) { | |
font-size: $font-size; | |
@if $line-height != null { | |
@if unit($font-size) == unit($line-height) { | |
line-height: ($line-height / $font-size); | |
} @else { | |
line-height: $line-height; | |
} | |
} | |
} | |
.foo { | |
@include font-size(16px); | |
} | |
.bar { | |
@include font-size(16px, 20px); | |
} | |
.bar { | |
@include font-size(50%, 80%); | |
} | |
.quu { | |
@include font-size(2em, 30px); | |
} | |
.que { | |
@include font-size(18px, 1.5); | |
} |
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
.foo { | |
font-size: 16px; | |
} | |
.bar { | |
font-size: 16px; | |
line-height: 1.25; | |
} | |
.bar { | |
font-size: 50%; | |
line-height: 1.6; | |
} | |
.quu { | |
font-size: 2em; | |
line-height: 30px; | |
} | |
.que { | |
font-size: 18px; | |
line-height: 1.5; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment