JSFiddle - React, Tailwind, and code Playground
by Svetlana
HTML
<button>Кнопка</button>
CSS
body {
margin: 50px;
}
button {
transform: scale(1);
transition-property: transform 1s ease;
cursor: pointer;
}
button:hover {transform: scale(1.2);}