JSFiddle - React, Tailwind, and code Playground

HTML

<div class="rect ">original</div>
<div class="rect rectscale2">transform: scale(2);</div>

CSS

.rect{
  display:inline-block;
  color:white;
  margin:50px;
  padding:15px;
  width:80px;
  height:80px;
  background-color:#1F8A70;
}

.rectscale2{
  transform: scale(2);
}