JSFiddle - React, Tailwind, and code Playground
by igalst
HTML
<button type="button" class="button">button</button>
<button type="button" class="button button-primary">primary</button>
CSS
.button {
font-size: 14px;
color: red;
background: pink;
}
.button:hover {
font-size: 20px;
}
.button-primary {
background: yellow;
border: solid 1px red;
}