@@ -45,7 +45,7 @@ export const PromptArea: React.FC<PromptAreaProps> = ({
45
45
} ) => {
46
46
return (
47
47
< div
48
- className = "prompt-area d-flex flex-column gap-2 p-2"
48
+ className = "prompt-area d-flex flex-column gap-2 p-2 mx-2 "
49
49
style = { {
50
50
background : 'rgba(255,255,255,0.04)' , // same dark tone as input row
51
51
borderRadius : '4px'
@@ -151,18 +151,18 @@ export const PromptArea: React.FC<PromptAreaProps> = ({
151
151
< button
152
152
onClick = { handleAddContext }
153
153
data-id = "composer-ai-add-context"
154
- className = { `btn mr-2 ${ showContextOptions ? 'btn-primary ' : 'btn-dark ' } ` }
154
+ className = { `btn mr-2 ${ showContextOptions ? 'btn-dark ' : 'btn-text ' } ` }
155
155
>
156
- @ Add context
157
- < i className = { `fa fa-caret-${ showContextOptions ? 'down' : 'up' } ` } > </ i >
156
+ Add context
157
+ { /* <i className={`fa fa-caret-${showContextOptions ? 'down' : 'up'}`}></i> */ }
158
158
</ button >
159
159
160
160
< button
161
161
onClick = { handleSetAssistant }
162
- className = { `btn mr-2 ${ showAssistantOptions ? 'btn-primary ' : 'btn-dark ' } ` }
162
+ className = { `btn mr-2 ${ showAssistantOptions ? 'btn-dark ' : 'btn-text ' } ` }
163
163
>
164
164
@Set assistant
165
- < i className = { `fa fa-caret-${ showAssistantOptions ? 'down' : 'up' } ` } > </ i >
165
+ { /* <i className={`fa fa-caret-${showAssistantOptions ? 'down' : 'up'}`}></i> */ }
166
166
</ button >
167
167
168
168
< button
@@ -200,7 +200,7 @@ export const PromptArea: React.FC<PromptAreaProps> = ({
200
200
return (
201
201
< span
202
202
key = { f }
203
- className = "badge badge-pill badge-secondary mr-1 aiContext-file"
203
+ className = "badge badge-info mr-1 aiContext-file text-success "
204
204
style = { { cursor : 'pointer' } }
205
205
onClick = { clearContext }
206
206
>
@@ -211,7 +211,7 @@ export const PromptArea: React.FC<PromptAreaProps> = ({
211
211
} ) }
212
212
{ contextFiles . length > 6 && (
213
213
< span
214
- className = "badge badge-pill badge-secondary "
214
+ className = "badge badge-info "
215
215
style = { { cursor : 'pointer' } }
216
216
onClick = { clearContext }
217
217
>
0 commit comments