-
Notifications
You must be signed in to change notification settings - Fork 44
/
main.css
63 lines (55 loc) · 1.29 KB
/
main.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
body {
overflow: hidden;
}
.gpt_message td {
margin-left: 30px;
margin-bottom: 20px;
margin-top: 20px;
position: relative;
display: inline-block;
padding: 20px;
background-color: #ff462b;
border-radius: 20px;
max-width: 80%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
font-size: large;
}
.user_message td {
margin-right: 30px;
margin-bottom: 20px;
margin-top: 20px;
position: relative;
display: inline-block;
padding: 20px;
background-color: #140a1e;
border-radius: 20px;
max-width: 80%;
float: right;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
font-size: large;
}
:root {
--element-padding: 1.5rem;
}
#root > .MuiBox-root {
min-height: 100%;
}
main {
flex: 0 0 100%;
}
/**** PASSED PROMPT LIST ****/
.past_prompts_list .MuiPaper-root {
background-color: var(--color-background);
}
.past_prompts_list li + li {
border-top: 1px solid var(--color-paper);
}
.past_prompts_list .MuiTreeItem-content {
font-style: italic;
padding: var(--spacing-half);
user-select: text !important;
cursor: pointer;
}
.past_prompts_list .MuiTreeItem-iconContainer {
display: none;
}