Skip to content
This repository has been archived by the owner on Aug 12, 2023. It is now read-only.

hauptrolle/stitches-reset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stitches-reset

GitHub release issues

Eric Meyer's Reset CSS for stitches.

Check out the demo on codesandbox.


Installation:

yarn add stitches-reset

or

npm install stitches-reset

Usage:

import * as React from "react";
import { reset } from "stitches-reset";
import { css } from "path-to/stitches.config.js";

css.global(reset);

const App = () => (
  <React.Fragment>
    <h1>Hi, I'm an app!</h1>
  </React.Fragment>
);

Credits

All credit goes to Eric Meyer for reset.css and zacanger for the styled-reset example.