JSFiddle - React, Tailwind, and code Playground

by e_kurbanov

HTML

<div>
  <a href="test" class="accepted">Accepted</a>
  <a href="test2">Rejected</a>
</div>

CSS

a {
  display: inline-block;
  border: 2px solid red;
  padding: 4px;
  text-decoration: none;
}
a.accepted {
  background: red;
}