JSFiddle - React, Tailwind, and code Playground
by halirgb
HTML
<a href="" class="pie">Pie</a>
CSS
a.pie{
display:inline-block;
min-width:100px;
height:50px;
line-height:50px;
vertical-align:middle;
background-color:blue;
color:white;
text-align:center;
}
a.pie:hover{
background-color:red;
}