-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAddModifyProgram.css
More file actions
52 lines (46 loc) · 1.05 KB
/
AddModifyProgram.css
File metadata and controls
52 lines (46 loc) · 1.05 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
.MarkDownEditor {
height: 100%;
border-radius: 5px;
background-color: #f0f0f3;
overflow-y: auto;
display: flex;
flex-direction: column;
}
.MarkDownEditorFocusLayer {
display: flex;
flex: 1;
flex-direction: column;
height: 100%;
}
.MarkDownToolBar {
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-start;
}
.MarkDownEditorContent {
font-family: "Open Sans", "Clear Sans", "Helvetica Neue", Helvetica, Arial, 'Twemoji', 'Segoe UI Emoji', sans-serif;
cursor: text;
flex: 1;
min-height: 18rem;
}
.MarkDownEditor .mdxeditor-root-contenteditable,
.MarkDownEditor .mdxeditor-root-contenteditable > div {
cursor: text;
display: flex;
flex: 1;
flex-direction: column;
min-height: 0;
}
.MarkDownEditor [class*="_imageWrapper"] {
max-width: 100%;
}
.MarkDownEditor [class*="_imageWrapper"] img,
.MarkDownEditorContent img {
border-radius: 4px;
display: block;
height: auto;
max-height: 20rem;
max-width: 100%;
object-fit: contain;
}