JSFiddle - React, Tailwind, and code Playground

by Felype Rennan

HTML

<div class="torto">
    
</div>

CSS

.torto {
    /* para fins de teste */
    background: red;
    width: 200px; height: 200px;
    margin: 20px;
    cursor: pointer;
    
    /* efeito */
    transition: 0.3s ease-out;
    transform: rotateZ(7deg);
}

.torto:hover {
    transform: rotateZ(0);
}