JSFiddle - React, Tailwind, and code Playground

by Andy Hewitt

HTML

<div class="btn btn-primary"></div>

JavaScript

$(function(){
   $("<style>")
       .text(".btn-primary{ background-color: cyan !important; min-height:20px; }")
       .appendTo($("body"));
});