File tree 2 files changed +14
-11
lines changed
2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -423,16 +423,7 @@ export const LLMChatPage: React.FC = () => {
423
423
< Icon />
424
424
{ title }
425
425
</ div >
426
- < div
427
- style = { {
428
- padding : "0.5rem" ,
429
- background : "#393939" ,
430
- borderRadius : "4px" ,
431
- width : "100%" ,
432
- wordWrap : "break-word" ,
433
- border : "1px solid #525252" ,
434
- } }
435
- >
426
+ < div className = "message" >
436
427
{ ( message . role === "tool-response" && (
437
428
< p
438
429
dangerouslySetInnerHTML = { {
@@ -448,7 +439,10 @@ export const LLMChatPage: React.FC = () => {
448
439
return (
449
440
< div >
450
441
< h1 className = "title" > LLM Chat for testing</ h1 >
451
- < Tabs selectedIndex = { tabIndex } onChange = { ( { selectedIndex } ) => setTabIndex ( selectedIndex ) } >
442
+ < Tabs
443
+ selectedIndex = { tabIndex }
444
+ onChange = { ( { selectedIndex } ) => setTabIndex ( selectedIndex ) }
445
+ >
452
446
< TabList scrollDebounceWait = { 200 } style = { { padding : "0 2rem" } } >
453
447
< Tab > LLM Setup</ Tab >
454
448
< Tab > Tools Selection</ Tab >
Original file line number Diff line number Diff line change @@ -38,4 +38,13 @@ body {
38
38
39
39
.tabbg {
40
40
background : theme .$background ;
41
+ }
42
+
43
+ .message {
44
+ padding : 0.5rem ;
45
+ background : theme .$layer-02 ;
46
+ border-radius : 4px ;
47
+ width : 100% ;
48
+ word-wrap : break-word ;
49
+ border : 1px solid theme .$border-subtle ;
41
50
}
You can’t perform that action at this time.
0 commit comments