Last active
December 17, 2015 05:39
-
-
Save yatil/5559354 to your computer and use it in GitHub Desktop.
This file contains 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 rem($property, $sizeValue: 1) { | |
@return #{$property} + ':' + ($sizeValue * $basefontsize) + 'px;' + #{$property} + ':' + $sizeValue + 'rem;'; | |
} | |
@include rem(padding, .5); | |
// Expected output: | |
padding: 8px; | |
padding: 0.5rem; | |
// Real output: | |
padding: 0.5; | |
padding: 0.5; |
This file contains 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
@mixin rem($property, $sizeValue: 1) { | |
#{$property}: ($sizeValue * $basefontsize) + px; | |
#{$property}: $sizeValue + rem; | |
} | |
@include rem(padding, .5); | |
// Expected output: | |
padding: 8px; | |
padding: 0.5rem; | |
// Real output: | |
padding: 8px; | |
padding: 0.5rem; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment