jackall3n / postcss-scope

🔭 A small plugin to allow you to scope your css with a custom selector
5 stars 2 forks source link

Support multiple scopes #6

Closed jackall3n closed 1 year ago

jackall3n commented 1 year ago

Added support for multiple scopes.

Usage

// postcss.config.js

export default {
    plugins: {
        "postcss-scope": [".foo", ".bar"],
    },
};