mxcop / wax

Web preprocessor written in Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Style Bundler

mxcop opened this issue · comments

commented

When an included component contains a <style> tag it should be extracted into a css file.

For example :

<h1>
  My Header
</h1>

<style>
  h1 {
    font-size: 2rem;
  }
</style>

Extra features that can be included later :

<style scoped></style> & <style lang="scss"></style>