@smashing/css

CSS utils: reset, normalize.

Usage no npm install needed!

<script type="module">
  import smashingCss from 'https://cdn.skypack.dev/@smashing/css';
</script>

README

yarn add @smashing/css

CSS utils: reset to sane defaults, normalize across browsers.

import {Reset, Normalize} from "@smashing/css"
import {createGlobalStyle} from "styled-components"

const App = () => (
  <div>
    <GlobalStyle />
    <Reset />
    <Normalize />
  </div>
)