-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
54 lines (46 loc) · 779 Bytes
/
main.css
File metadata and controls
54 lines (46 loc) · 779 Bytes
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
html {
overflow-y: auto;
}
.main > .content {
height: calc(100vh - 52px);
margin: 0;
overflow-y: auto;
position: relative;
-webkit-overflow-scrolling: touch;
}
.main > .content > section {
display: none;
position: absolute;
width: 100%;
height: 100%;
}
.main > .content > section.test,
.main > .content > section.setting {
overflow: scroll;
padding-bottom: 30px;
}
@media screen and (max-width: 1023px) {
.navbar-menu {
left: 0;
position: absolute;
right: 0;
}
}
.editor-wrapper {
width: 100%;
height: 100%;
position: relative;
}
#editor {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.modal {
padding: 16px;
}
.mb100 {
margin-bottom: 100px;
}