normalize.cssinjs
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

normalize.cssinjs

travis build codecov coverage version downloads MIT License

Normalize.css in CSS-in-JS format - when you don't wan't to inject global. Uses other my library css-in-to-js.

Usage

yarn add normalize.cssinjs
OR
npm install --save normalize.cssinjs
import resets from 'normalize.cssinjs';

Settings

normalize

By default it uses CSStools Normalize.css but you can provide your selected with:

import { normalizeCssInJs } from 'normalize.cssinjs';
import cssString from '!raw-loader!normalize.css';
const resets = normalizeCssInJs({ normalize: cssString });

(or use something like babel-plugin-inline-import)

cssToString

If you wan't to get CSS-declarations in CSS-string format use:

const resets = normalizeCssInJs({ cssToString: true });

Tools

minifyCss()

Minify CSS-string

cssToJs(cssString, { cssToString: false })

Convert any CSS-string to styled-format object or object with CSS-declarations as string.

resetWithSelectors(resets)(selectors)

Return resets (CSS) for selector or array of selectors.

Acknowledgements

Uses PostCSS for parsing the CSS.

normalize.css is a project by Jonathan Neal, co-created with Nicolas Gallagher.

Package Sidebar

Install

npm i normalize.cssinjs

Weekly Downloads

6

Version

1.1.1

License

MIT

Unpacked Size

16.7 kB

Total Files

7

Last publish

Collaborators

  • j-kallunki