rem icon indicating copy to clipboard operation
rem copied to clipboard

You can simplify the input

Open ha404 opened this issue 13 years ago • 0 comments

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);
}

ha404 avatar Jun 15 '12 05:06 ha404