wix-incubator / stylable-integration

Integrating Stylable into your project
BSD 3-Clause "New" or "Revised" License
7 stars 3 forks source link

defining a shared class from theme don't output to CSS #11

Closed idoros closed 6 years ago

idoros commented 7 years ago
@namespace "theme";
.myClass {}

@namespace "main";
:import {
    -st-theme: true;
    -st-from: "./theme.st.css";
    -st-named: myClass;
}
.myClass { /* will not be in CSS */
    width: 400px;
}