-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
executable file
·48 lines (42 loc) · 1.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport'/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<base href="dist/" >
<link rel="manifest" href="manifest.json">
<title>React planner mobile</title>
<style>
html, body, #app {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
html, body, #app {
overflow-x: hidden;
}
::-webkit-scrollbar {
-webkit-appearance: none;
width: 0;
padding:0;
margin:0;
/*width: 7px;*/
/*border-radius: 5px;*/
}
::-webkit-scrollbar-thumb {
-webkit-appearance: none;
/*border-radius: 4px;*/
/*background-color: rgba(130,130,130,.2);*/
/*-webkit-box-shadow: 0 0 1px rgba(230,230,230,.2);*/
}
</style>
</head>
<body>
<div id="app"></div>
<script src="bundle.js" onerror="alert('File bundle.js not found! Please run npm run build.')"></script>
</body>
</html>