JSFiddle - React, Tailwind, and code Playground

by unknown601

HTML

<div class="panel">text text text</div>
<div class="panel ">text text text</div>

CSS

.panel {
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
.panel:hover {
    opacity: 0.4;
}