JSFiddle - React, Tailwind, and code Playground

by Scott Kaye

HTML

<button>
Thing
</button>

SCSS

button {
	width: 200px;
	height: 200px;
	display: block;
	background: red;
	-webkit-tap-highlight-color: rgba(#0f0, 0);
	
	&:hover {
		background: red;
	}
	
	&:active {
		background: blue;
	}
	
	&:focus {
		background: yellow;
	}
}

JavaScript

document.addEventListener("touchstart", function() {}, false);