JSFiddle - React, Tailwind, and code Playground
HTML
<div class="top">
<a class="reply">yes</a>
<a class="reply">yes</a>
</div>
CSS
a.reply {
padding: 20px;
background-color: #555;
border-radius: 4px;
margin-top: 10px;
width: 100px;
height: 50px;
display:inline-block;
}
a:hover.reply {
padding: 20px;
background-color: #fff;
border-radius: 4px;
width: 100px;
height: 50px;
}
.top {padding:20px;}