postcss-modules-sync
一个PostCSS插件,可在js中同步使用CSS模块。
安装
npm install postcss-modules-sync
例子
import CSSModulesSync from 'postcss-modules-sync'
import postcss from 'postcss'
const css = `
:global .text {
color: white;
background-color: gray;
}
.green {
background-color: green;
}
.blue {
background-color: blue;
}
.default {
composes: green;
display: flex;
}
`
let
评论0
最新资源