File tree 2 files changed +1
-14
lines changed
2 files changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -522,9 +522,6 @@ export const LLMChatPage: React.FC = () => {
522
522
onChange = { ( e ) =>
523
523
setRawExtraLLMParams ( e . target . value )
524
524
}
525
- style = { {
526
- background : "#393939" ,
527
- } }
528
525
/>
529
526
</ Stack >
530
527
</ Column >
@@ -591,9 +588,6 @@ export const LLMChatPage: React.FC = () => {
591
588
rows = { 4 }
592
589
value = { systemMessage }
593
590
onChange = { ( e ) => setSystemMessage ( e . target . value ) }
594
- style = { {
595
- background : "#393939" ,
596
- } }
597
591
/>
598
592
< TextArea
599
593
labelText = "Enter Prompt"
@@ -602,9 +596,6 @@ export const LLMChatPage: React.FC = () => {
602
596
rows = { 4 }
603
597
value = { prompt }
604
598
onChange = { ( e ) => setPrompt ( e . target . value ) }
605
- style = { {
606
- background : "#393939" ,
607
- } }
608
599
/>
609
600
< div
610
601
style = { {
Original file line number Diff line number Diff line change 11
11
12
12
@include grid .flex-grid ();
13
13
14
- :root [ data-carbon-theme = " g10 " ] {
14
+ :root {
15
15
@include theme .theme (themes .$g10 );
16
16
}
17
17
18
- :root [data-carbon-theme = " g100" ] {
19
- @include theme .theme (themes .$g100 );
20
- }
21
-
22
18
@media (prefers-color-scheme : dark ) {
23
19
:root {
24
20
@include theme .theme (themes .$g100 );
You can’t perform that action at this time.
0 commit comments