@raneio/scoped-style

1.0.1 • Public • Published

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

Dependents (0)

Package Sidebar

Install

npm i @raneio/scoped-style

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

3.87 kB

Total Files

5

Last publish

Collaborators

  • raneio