normalize-stitches
v0.1.2
Published
CSS-in-JS implementation of normalize.css for Stitches
Downloads
1,103
Maintainers
Readme
normalize-stitches
This package is a CSS-in-JS implementation of normalize.css.
Installation
To install the package with npm
run the following command:
npm i normalize-stitches --save
or to install the package with yarn
run:
yarn add normalize-stitches
Usage
import { global } from '@stitches/react';
import { normalize } from 'normalize-stitches';
const globalStyles = global({
...normalize,
// Other custom global styling
});
() => {
globalStyles();
return <div />;
};