rem
rem copied to clipboard
You can simplify the input
In your documentation you have the following example input:
.element {
@include rem('padding',10px 0 2px 5px);
}
You can omit the ' marks surrounding each property:
.element {
@include rem(padding,10px 0 2px 5px);
}