summaryrefslogtreecommitdiffstats
path: root/src/renderer/index.html
blob: 3dce6f330c4d31b817384a1f5ec9ef72f5ee1f57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
		<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width" />
		<title>RPGedit</title>
		<style>
			html, body, #app {
				height: 100%;
				overflow: hidden;
			}
		</style>
	</head>
	<body>
		<div id="app"></div>
	</body>
</html>