JSFiddle - React, Tailwind, and code Playground

by Jason Land

HTML

<div id="dash"><div>

CSS

#dash {
    width: 200px;
    height: 200px;
    left: 35px;
    top: 35px;
    position: absolute;
    background-color: lightblue;
    -webkit-transition: all 5s cubic-bezier(0.25, 0.1, 0.25, 1);
    -webkit-transform: rotateZ(0deg);
}

#dash:hover {
    -webkit-transform: rotateZ(3600deg);
}