/**
 * Resets default styles of button elements.
 */
@mixin reset-button {
	width: auto;
	margin: 0;
	padding: 0;
	color: currentColor;
	font: inherit;
	background: none;
	border: 0;
	box-shadow: none;
	appearance: none;
	user-select: none;
	-webkit-touch-callout: none;
	touch-action: manipulation; // prevent iOS double tap zoom
}
