postcss / postcss-custom-properties

Use Custom Properties in CSS
https://postcss.github.io/postcss-custom-properties
MIT License
596 stars 77 forks source link

Output has Duplicate Empty Property when Using `var()` #42

Closed ryanfitzer closed 8 years ago

ryanfitzer commented 8 years ago

Using the default configuration, I'm getting a duplicate property with an empty value.

Before:

a {
    color: var( --global-color-links );
}

After:

a {
    color:  ;
    color: #c53e3e;
}
MoOx commented 8 years ago

Closed by #43