postcss / postcss-custom-properties

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

Missed whitespace #137

Closed ai closed 5 years ago

ai commented 5 years ago

Input CSS:

  .base {
    box-shadow: inset 0 -3px 0 var(--buttonDepthColor);
  }

Output CSS:

  .base {
     box-shadow: inset 0 -3px 0rgba(0, 0, 0, 0.2);
  }

/cc @jonathantneal

jonathantneal commented 5 years ago

Thanks for reporting this. It is resolved in v8.0.2.

ai commented 5 years ago

Thanks, it was fast :)