-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
64 lines (53 loc) · 934 Bytes
/
index.css
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
:root, body, #app {
height: 100%;
box-sizing: border-box;
margin: 0;
}
body {
padding: 8px;
}
#app {
display: flex;
flex-direction: column;
}
#app .top-box {
margin-bottom: 10px;
display: flex;
align-items: center;
}
#app label:last-of-type {
flex: 1 1 auto;
}
textarea#textBox, #previewBox {
height: 100%;
width: 100%;
box-sizing: border-box;
overflow: auto;
font-size: 20px;
}
.button-box {
margin-top: 10px;
}
::-webkit-scrollbar {
width: 10px;
height: 1px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: none;
background: #A8A8A8;
-webkit-box-shadow: none;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: none;
border-radius: 10px;
background: #eae9e8;
-webkit-box-shadow: none;
}
.el-drawer__body {
height: 100%;
}
.el-drawer__body .el-table {
height: 100%;
overflow: auto;
}