-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (57 loc) · 1.22 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!--
* @Author: mavon
* @Date: 2021-11-10 23:28:37
* @LastEditTime: 2021-11-19 15:18:13
* @LastEditors: mavon
* @Description:
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>vue admin icloud</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
<style>
html body, html body {
margin: 0px;
padding: 0px;
position: relative;
box-sizing: border-box;
height: 100vh;
padding: 0;
overflow: hidden;
font-family: PingFang SC,Arial,Microsoft YaHei,sans-serif;
font-size: 14px;
color: #515a6e;
background: #f6f8f9;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html body * {
box-sizing: border-box;
outline: none!important;
}
html body #app {
height: 100vh;
overflow: auto;
}
.el-scrollbar__wrap {
overflow: scroll;
height: 100%;
}
html body ::-webkit-scrollbar{
width: 8px;
height: 8px;
}
html body #app::-webkit-scrollbar, html body #app::-webkit-scrollbar {
width: 8px;
height: 8px;
}
</style>