File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -162,8 +162,7 @@ const VapiWidget: React.FC<VapiWidgetProps> = ({
162
162
...sizeStyles [ size ] . expanded ,
163
163
...radiusStyles [ radius ] ,
164
164
backgroundColor : colors . baseColor ,
165
- borderColor : styles . theme === 'dark' ? '#1F2937' : '#E5E7EB' ,
166
- border : '1px solid' ,
165
+ border : `1px solid ${ styles . theme === 'dark' ? '#1F2937' : '#E5E7EB' } ` ,
167
166
display : 'flex' ,
168
167
flexDirection : 'column' ,
169
168
overflow : 'hidden' ,
@@ -183,8 +182,7 @@ const VapiWidget: React.FC<VapiWidgetProps> = ({
183
182
184
183
const controlsAreaStyle : React . CSSProperties = {
185
184
padding : '1rem' ,
186
- borderTop : '1px solid' ,
187
- borderTopColor : styles . theme === 'dark' ? '#1F2937' : '#E5E7EB' ,
185
+ borderTop : `1px solid ${ styles . theme === 'dark' ? '#1F2937' : '#E5E7EB' } ` ,
188
186
backgroundColor : colors . baseColor ,
189
187
...( styles . theme === 'dark'
190
188
? { filter : 'brightness(1.05)' }
You can’t perform that action at this time.
0 commit comments