File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/jupyter-ai/src/components Expand file tree Collapse file tree 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'> & {
2828export function Select ( props : SelectProps ) : JSX . Element {
2929 return (
3030 < FormControl fullWidth >
31- < InputLabel
32- sx = { { color : 'var(--jp-ui-font-color1)' } }
31+ < InputLabel
32+ sx = { { color : 'var(--jp-ui-font-color1)' } }
3333 > { props . label } </ InputLabel >
3434 < MuiSelect
3535 { ...props }
@@ -44,10 +44,10 @@ export function Select(props: SelectProps): JSX.Element {
4444 MenuProps = { { sx : { maxHeight : '50%' , minHeight : 400 } } }
4545 sx = { {
4646 '& .MuiOutlinedInput-notchedOutline' : {
47- borderColor : "var(--jp-ui-font-color1)" ,
47+ borderColor : "var(--jp-ui-font-color1)" ,
4848 } ,
4949 '&:hover .MuiOutlinedInput-notchedOutline' : {
50- borderColor : "var(--jp-ui-font-color1)" ,
50+ borderColor : "var(--jp-ui-font-color1)" ,
5151 } ,
5252 '& .MuiSelect-select' : {
5353 color : "var(--jp-ui-font-color1)" ,
@@ -64,7 +64,7 @@ export function Select(props: SelectProps): JSX.Element {
6464 '-webkit-text-fill-color' : 'var(--jp-ui-font-color1) !important' ,
6565 } ,
6666 } }
67-
67+
6868 >
6969 { props . children }
7070 </ MuiSelect >
You can’t perform that action at this time.
0 commit comments