bendyorke / boot-postcss

PostCSS runner for boot-clj
12 stars 0 forks source link

external css values sometimes being ignored #11

Open bendyorke opened 8 years ago

bendyorke commented 8 years ago

Currently imported css values can't be used as partial defnitions. For example:

@value foo from 'css/bar.css'

.baz {
  border: 1px solid foo;
}

will result in

._hashed_name__baz_ {
  border: 1px solid foo;
}

Most likely this is a bug with the postcss-modules-values plugin, but it's worth looking into.