1.0.0 • Published 5 years ago

stylemaker v1.0.0

Weekly downloads
22
License
ISC
Repository
github
Last release
5 years ago

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.