StartPolymer / polymer-starter-kit-plus-old

A starting point for building Single-Page Applications with Polymer 1.x
Other
78 stars 26 forks source link

PostCSS nesting doesn't work for elements #19

Closed jgautheron closed 8 years ago

jgautheron commented 8 years ago

In app/elements/foo/foo.html, I have something like this:

<style>
  :host footer {
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;

    @nest & a {
      text-decoration: none;
      color: #000;
    }
  }
</style>

The compiled version didn't process the nesting. I'm guessing postcss is not run at all.

JosefJezek commented 8 years ago

I will check it out...