You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a "getting started" template, it would stand to reason that it probably should only promote web standards, which in this repo is conflicted due to usages of:
For any instances of import xxx from some.css, put that right into the JavaScript template, e.g.
// create templates that interpolate variables and HTML!getTemplate(){return` <style> /* contents of CSS file goes here instead */ </style> /* some HTML code */ `;}
Un nest any of that CSS
Remove dependency on @eve-container/eve-container and replace with FlexBox / Grid equivalent
This will be important as the next version of Greenwood, while custom PostCSS plugins will still be supported, it wont be by default, so if a project wants to use nested CSS, that's great, they can by just installing it into their project.
The text was updated successfully, but these errors were encountered:
As a "getting started" template, it would stand to reason that it probably should only promote web standards, which in this repo is conflicted due to usages of:
import
for CSS filesExamples
What we should do here is the following
import xxx from some.css
, put that right into the JavaScript template, e.g.@eve-container/eve-container
and replace with FlexBox / Grid equivalentThis will be important as the next version of Greenwood, while custom PostCSS plugins will still be supported, it wont be by default, so if a project wants to use nested CSS, that's great, they can by just installing it into their project.
The text was updated successfully, but these errors were encountered: