bevy_wasm_touch_fix 0.1.2

For Bevy >=0.12, a plugin that fixes the issues of incorrect touch positions in wasm
Documentation
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8" />
		<style>
			body {
				touch-action: none;
				display: flex;
				align-items: center;
				justify-items: center;
				align-self: center;
				justify-self: center;
				justify-content: center;
				align-content: center;
				height: 100%;
				width: 100%;
				flex-direction: column;
				height: 100vh;
				margin: 0px;
			}
			canvas {
			}
		</style>
	</head>
	<body>
		<script type="module">
			import init from './test.js';
			init()
		</script>
		<canvas id="main-canvas">
		</canvas>
	</body>
</html>