JSFiddle - React, Tailwind, and code Playground

by Charlie Vaughan

HTML

<div>
  <h1>Lipsum</h1>
  <p>Lipsum</p>
</div>

SCSS

// Global.scss
$background: red;
$color: null;

// Brand.scss
$background: blue;

div {
  background: $background;
  color: $color;
}