Skip to content

Instantly share code, notes, and snippets.

@yatil
Last active December 17, 2015 05:39
Show Gist options
  • Save yatil/5559354 to your computer and use it in GitHub Desktop.
Save yatil/5559354 to your computer and use it in GitHub Desktop.
@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;
@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