1.0.1 • Published 3 years ago

@raneio/scoped-style v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

Scope css styles

Get started

 <script type="module" src="https://cdn.skypack.dev/@raneio/scoped-style?min"></script>
<div class="test">
  <p>This should be red</p>
  <p class="info">This info should be blue</p>
</div>

<div>
  <p>This should be black</p>
  <p class="info">This info should be black</p>
</div>

<scoped-style scope=".test">
  <style media="not all">
    :root {
      color: red;
    }

    .info {
      color: cornflowerblue;
    }
  </style>
</scoped-style>

License

MIT

Copyright 2021, Rane Ahonen, Rane.io