-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.scss
84 lines (72 loc) · 1.38 KB
/
App.scss
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
76
77
78
79
80
81
82
83
84
#editor-container {
font-family: "Inter", Helvetica, sans-serif;
height: 100%;
margin: 0 auto;
font-size: 1em;
}
#editor-container .ql-editor {
min-height: 100%;
height: inherit;
overflow-y: inherit;
padding-bottom: 75px;
line-height: 1.7;
padding-left: 0;
padding-right: 0;
}
#editor-container .ql-editor ol,
.ql-editor ul {
padding-left: 0.875em;
}
#editor-container .ql-editor > * {
margin-top: 1em;
}
#editor-container .ql-editor > *:last-child {
margin-bottom: 50px;
}
#editor-container h1 + p,
#editor-container h2 + p {
margin-top: 0.5em;
}
#editor-container blockquote {
border-left: 4px solid #111;
padding-left: 1em;
}
#editor-container hr {
border: none;
color: #111;
letter-spacing: 1em;
text-align: center;
}
#editor-container hr:before {
content: "...";
}
#tooltip-controls {
background-color: #111;
border-radius: 4px;
display: none;
padding: 5px 10px;
position: absolute;
}
#tooltip-controls::before {
box-sizing: border-box;
border-bottom: 6px solid #111;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
content: " ";
display: block;
height: 6px;
left: 50%;
position: absolute;
margin-left: -6px;
margin-top: -6px;
top: 0;
width: 6px;
}
#tooltip-controls button {
background-color: transparent;
color: #fff;
border: none;
}
#tooltip-controls button.active {
color: #21b384;
}