partey_workadventure/desktop/local-app/index.html

30 lines
599 B
HTML
Raw Normal View History

2022-02-18 01:51:35 +01:00
<!DOCTYPE html>
2022-02-20 20:30:53 +01:00
<html lang="en">
2022-02-18 01:51:35 +01:00
<head>
2022-02-20 20:30:53 +01:00
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy" content="script-src 'self';">
<title>WorkAdventure Desktop</title>
2022-02-18 01:51:35 +01:00
<style>
2022-02-20 20:30:53 +01:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
2022-02-18 01:51:35 +01:00
2022-02-20 20:30:53 +01:00
html, body, #app {
2022-02-18 01:51:35 +01:00
height: 100%;
2022-02-19 01:08:33 +01:00
width: 100%;
2022-02-18 01:51:35 +01:00
}
2022-02-20 20:30:53 +01:00
#app {
2022-02-18 01:51:35 +01:00
display: flex;
2022-02-19 01:08:33 +01:00
}
2022-02-18 01:51:35 +01:00
</style>
</head>
<body>
2022-02-20 20:30:53 +01:00
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
2022-02-18 01:51:35 +01:00
</body>
2022-02-20 20:30:53 +01:00
</html>