JSFiddle - React, Tailwind, and code Playground

by Thasmo

HTML

<p class="zoom">
FLICKER MEH
</p>

CSS

.zoom {
	display: inline-block;
	transition: transform 250ms;
	transform: translateZ(0);
}

.zoom:hover {
	transform: translateZ(0) scale(1.2) rotate(2deg);
}