JSFiddle - React, Tailwind, and code Playground

by tapas_23571113

HTML

<div class="message-box">
        <a href="#">Logout</a>
    </div>

CSS

a {
        text-decoration: none;
        color: inherit;    
    }

    .message-box a:hover {
        text-decoration: underline;    
        text-shadow: 0.1em 0.1em 0.2em black;
    }