-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchat.css
92 lines (80 loc) · 1.38 KB
/
chat.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
Screen {
layout: grid;
grid-size: 8 8;
grid-rows: 1fr;
grid-columns: 1fr;
background: $panel;
}
Input {
dock: bottom;
}
Container {
height: 100%;
width: 100%;
background: #343541;
}
PreviousPrompt {
column-span: 2;
min-height: 5;
}
PreviousChatButton {
background: #343541;
width: 100%;
margin-left: 1;
margin: 1;
}
#previous_chats {
background: #202123;
column-span: 2;
row-span: 8;
height: 100%;
}
#prompts_and_responses_container {
column-span: 6;
row-span: 8;
background: #343541;
}
#prompts_and_responses > Vertical{
column-span: 6;
height: 100%;
background: #202123;
}
#previous_prompts > Vertical {
width: 100%;
column-span: 2;
row-span: 8;
height: 100%;
background: #202123;
}
Prompt {
background: #343541;
min-height: 5;
content-align: center middle;
text-style: bold;
margin-left: 0;
padding-left: 5;
padding-right: 5;
}
PromptResponse {
overflow-y: scroll;
background: #444654;
min-height: 5;
content-align: center middle;
text-style: bold;
padding-left: 2;
padding-right: 5;
padding-bottom: 2;
width: 100%;
padding-top: 1;
column-span: 6;
row-span: 3;
}
PreviousPrompt {
column-span: 4;
background: #202123;
}
Examples {
width: 20%;
height: 90%;
background: #202123;
}