JSFiddle - React, Tailwind, and code Playground
by David Kyle
HTML
<div class="container">
<button class="resize">
Hello
</button>
</div>
CSS
.container {
display: block;
max-width: 10vw;
height: 5vh;
}
.resize {
width: 100%;
height: 100%;
transition: all 0.4s ease-in-out;
}
.resize:hover {
width: 109%;
height: 109%;
transition: all 0.4s ease-in-out;
}