JSFiddle - React, Tailwind, and code Playground

by techunter

HTML

<div>dd</div>

CSS

.loading:after {
	/* with no content, nothing is rendered */
	content: "";
	position: fixed;
	/* element stretched to cover during rotation an aspect ratio up to 1/10 */
	top: -500%;
	left: -500%;
	right: -500%;
	bottom: -500%;
	z-index: 9999;
	pointer-events: none;
	/* background */
	background-color: rgba(0,0,0,0.6);
	background-image:...