Closed
Description
By formatting an scss file, a whitespace is inserted before every !important
. However, putting !important
after a variable inserts double spaces instead of one.
For example, the following source
.my-class {
font-size: $size !important;
}
is formatted into
.my-class {
font-size: $size !important;
}
Please note the double space between the !important
and the variable.