JSFiddle - React, Tailwind, and code Playground

by graphettion

CSS

/*

# The Mad CSScientist's CSS Reset
written by Tommy Hodgins: https://gist.github.com/tomhodgins/c4988b9d9878763ae861

## Usage
Include this CSS as a sensible starting point to minimize the differences between browsers, and to enable nicer rendering defaults

    <link href=preset.css rel=stylesheet>

*/

* {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: auto;
}

html {
  font-size: 10pt;
  line-height: 1.4;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}