JSFiddle - React, Tailwind, and code Playground

by crnacura

HTML

<div></div>

CSS

body {
    background: #000;
}

div {
    width: 300px;
    height: 10px;
    background: #fff;
    position: relative;
    transition: transform 1.3s;
    outline: 1px solid transparent;
}

div:hover {
    transform: rotate(10deg);
}