stylemaker
v1.0.0
Published
A simple tool to implement and use CSS in JS.
Downloads
27
Maintainers
Readme
STYLE MAKER
A simple tool to write and use css in js without css-loader, implements css isolation.
Install
npm i -S stylemaker
Usage
import StyleMaker from 'style-maker';
var yourCssString = `
#header {
font-size: 24px;
color: #666666;
}
`
StyleMaker(yourCssString); // This will add the styles in a style tag of the document head.