File tree 1 file changed +5
-5
lines changed
packages/jupyter-ai/src/components
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ export type SelectProps = Omit<MuiSelectProps<string>, 'value' | 'onChange'> & {
28
28
export function Select ( props : SelectProps ) : JSX . Element {
29
29
return (
30
30
< FormControl fullWidth >
31
- < InputLabel
32
- sx = { { color : 'var(--jp-ui-font-color1)' } }
31
+ < InputLabel
32
+ sx = { { color : 'var(--jp-ui-font-color1)' } }
33
33
> { props . label } </ InputLabel >
34
34
< MuiSelect
35
35
{ ...props }
@@ -44,10 +44,10 @@ export function Select(props: SelectProps): JSX.Element {
44
44
MenuProps = { { sx : { maxHeight : '50%' , minHeight : 400 } } }
45
45
sx = { {
46
46
'& .MuiOutlinedInput-notchedOutline' : {
47
- borderColor : "var(--jp-ui-font-color1)" ,
47
+ borderColor : "var(--jp-ui-font-color1)" ,
48
48
} ,
49
49
'&:hover .MuiOutlinedInput-notchedOutline' : {
50
- borderColor : "var(--jp-ui-font-color1)" ,
50
+ borderColor : "var(--jp-ui-font-color1)" ,
51
51
} ,
52
52
'& .MuiSelect-select' : {
53
53
color : "var(--jp-ui-font-color1)" ,
@@ -64,7 +64,7 @@ export function Select(props: SelectProps): JSX.Element {
64
64
'-webkit-text-fill-color' : 'var(--jp-ui-font-color1) !important' ,
65
65
} ,
66
66
} }
67
-
67
+
68
68
>
69
69
{ props . children }
70
70
</ MuiSelect >
You can’t perform that action at this time.
0 commit comments