Skip to content

Error parsing properties starting with operator (-/+) #535

@AndyOGo

Description

@AndyOGo

Unfortunately using - operator in SASS causes this bug.

$width: 10;

.test{
          margin-left: - 54 * $width - 1;
 }

Quick fixed with brackets:

$width: 10;

.test{
          margin-left: - (54 * $width - 1);
 }

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions