postcss-shared-options
0.1.2 • Public • Published PostCSS Shared Options
PostCSS plugin share variables between different css files with scope.
:root {
--root-width: 25px;
}
@shared --root-width from "./vars.css";
.foo {
width: var(--root-width);
height: calc(var(--root-width) * 2);
}
:root {
--root-width-<md5_hash>: 25px;
}
.foo {
width: var(--root-width-<md5_hash>);
height: calc(var(--root-width-<md5_hash>) * 2);
}
Usage
postcss([ require('postcss-shared-options') ])
See PostCSS docs for examples for your environment.
Package Sidebar
Install
npm i postcss-shared-options
Weekly Downloads