JSFiddle - React, Tailwind, and code Playground

by Sergey khorev

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  <div class="tn-atodm">
    <a href="" class="tn-atom" >test</a>
  </div>
</body>
</html>

CSS

a,.tn-atom:hover {text-decoration: underline;}
 a,.tn-atom{text-decoration: none;}
 
 a,.tn-atom {
    color: #353535;
    font-size: 13px;
    font-family: 'Circe',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 400;
    border-width: 1px;
    border-radius: 30px;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    text-decoration: underline;
    text-decoration: none;
}