@@ -44,22 +44,17 @@ interface LogEntry {
44
44
const Container = styled . div < { collapsed : boolean } > `
45
45
display: flex;
46
46
flex-direction: column;
47
- height: 96vh ;
48
- padding: 0 15px ;
47
+ height: 95vh ;
48
+ padding: 0 25px 0 35px ;
49
49
overflow: hidden;
50
50
background: var(--Search-bar-background, #f2f3f5);
51
51
margin-left: ${ ( { collapsed } : { collapsed : boolean } ) => ( collapsed ? '50px' : '250px' ) } ;
52
52
transition: margin-left 0.3s ease-in-out;
53
- box-sizing: border-box;
54
-
55
- @media (max-width: 900px) {
56
- height: 92vh;
57
- }
58
53
` ;
59
54
60
55
const ChatBodyWrapper = styled . div `
61
56
display: flex;
62
- flex-direction: column ;
57
+ flex-direction: row ;
63
58
padding: 0 !important;
64
59
flex: 1;
65
60
overflow: hidden;
@@ -68,8 +63,8 @@ const ChatBodyWrapper = styled.div`
68
63
const ViewerSection = styled . div `
69
64
display: flex;
70
65
flex-direction: column;
71
- width: 100% ;
72
- height: 40 %;
66
+ padding-bottom: 60px !important ;
67
+ width: 70 %;
73
68
overflow: hidden;
74
69
` ;
75
70
@@ -86,9 +81,6 @@ const ChatSection = styled.div`
86
81
flex-direction: column;
87
82
flex: 1;
88
83
overflow: hidden;
89
- @media (min-width: 768px) {
90
- height: 96%;
91
- }
92
84
` ;
93
85
94
86
const ViewerHeader = styled . div `
@@ -146,7 +138,7 @@ const TitleInput = styled.input`
146
138
const ChatHistory = styled . div `
147
139
flex-grow: 1;
148
140
overflow-y: auto;
149
- padding: 10px ;
141
+ padding: 20px ;
150
142
display: flex;
151
143
flex-direction: column;
152
144
background: white;
@@ -185,8 +177,8 @@ const MessageBubble = styled.div<MessageBubbleProps>`
185
177
186
178
const InputContainer = styled . div `
187
179
display: flex;
188
- gap: 8px ;
189
- padding: 8px 0;
180
+ gap: 12px ;
181
+ padding: 16px 0;
190
182
border-radius: 0 0 8px 8px;
191
183
position: sticky;
192
184
bottom: 0;
@@ -195,12 +187,12 @@ const InputContainer = styled.div`
195
187
196
188
const TextArea = styled . textarea `
197
189
flex-grow: 1;
198
- padding: 8px ;
190
+ padding: 12px ;
199
191
border: 2px solid #848484;
200
192
border-radius: 8px;
201
193
resize: none;
202
194
min-height: 24px;
203
- max-height: 80px ;
195
+ max-height: 150px ;
204
196
font-family: inherit;
205
197
font-size: 14px;
206
198
line-height: 1.4;
0 commit comments