Normalize file for Emotion CSS-in-JS library.
The original normalize.css
is pulled from necolas/normalize.css, and parsed into emotion ready format.
npm install --save emotion-normalize
import { Global, css } from "@emotion/react";
import emotionNormalize from 'emotion-normalize';
// ...
<Global
styles={css`
${emotionNormalize}
html,
body {
padding: 0;
margin: 0;
background: white;
min-height: 100%;
font-family: Helvetica, Arial, sans-serif;
}
`}
/>
The MIT License
emotion-normalize is maintained and sponsored by Infinum.