-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (69 loc) · 2.23 KB
/
Copy pathindex.html
File metadata and controls
75 lines (69 loc) · 2.23 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="./images/logo.png">
<title>%VUE_APP_TITLE%</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!--EZ_CONFIG_SCRIPT-->
<style>
@media (min-width: 769px) {
html, body, div, main, section, article, aside, nav {
scrollbar-width: none !important;
-ms-overflow-style: none !important;
}
::-webkit-scrollbar, ::-webkit-scrollbar-button, ::-webkit-scrollbar-track, ::-webkit-scrollbar-track-piece, ::-webkit-scrollbar-thumb, ::-webkit-scrollbar-corner, ::-webkit-resizer {
display: none !important;
width: 0 !important;
height: 0 !important;
background: transparent !important;
}
}
html, body {
width: 100%;
height: 100%;
}
@media (min-width: 769px) {
* {
scrollbar-width: none !important;
-ms-overflow-style: none !important;
}
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow-x: hidden;
}
#app {
width: 100%;
height: 100%;
}
html.preloader-active, body.preloader-active {
overflow: hidden !important;
}
</style>
<style>
.app-version {
position: fixed;
left: 6px;
bottom: 4px;
font-size: 9px;
color: rgba(0, 0, 0, 0.35);
user-select: none;
pointer-events: none;
z-index: 5;
}
</style>
</head>
<body>
<div id="app"></div>
<div class="app-version">v0.4.0</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>