JSFiddle - React, Tailwind, and code Playground

by liquidmetalrob

HTML

<div class="confirm_selection">[ Confirm Selection ]</div>

CSS

.confirm_selection {
    -webkit-transition: text-shadow 0.2s linear;
    -moz-transition: text-shadow 0.2s linear;
    -ms-transition: text-shadow 0.2s linear;
    -o-transition: text-shadow 0.2s linear;
    transition: text-shadow 0.2s linear;
    
    overflow-x: hidden; 
    overflow-y: hidden; 
    opacity: 1;
    
}
.confirm_selection:hover {
    text-shadow: 0 0 3px red;
}