JSFiddle - React, Tailwind, and code Playground
by c_vilander
HTML
<div class="box">
</div>
CSS
body {
padding: 50px;
}
.box {
width: 50px;
height: 50px;
background-color: green;
-webkit-transition: 0.1s ease-out;
-moz-transition: 0.1s ease-out;
-o-transition: 0.1s ease-out;
}
.box:hover {
-webkit-transform: scale(1.4);
-moz-transform: scale(1.4);
-o-transform: scale(1.4);
}