JSFiddle - React, Tailwind, and code Playground

by tnhu

HTML

<div id="modal">
  <p>
  Hello
  </p>
</div>

CSS

#modal {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background: green;
  transition: all .3s ease;
}

#modal:hover {
    width: 100px;
    height: 100px;
}