mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-26 16:09:50 +03:00
fix(devui): fix style of Select
This commit is contained in:
parent
950021cf7b
commit
b623e0f9b1
|
@ -44,6 +44,18 @@ export class Select extends (PureComponent || Component)<SelectProps> {
|
|||
controlHeight: this.props.theme.inputHeight,
|
||||
},
|
||||
})}
|
||||
styles={{
|
||||
container: (base, props) => ({
|
||||
...base,
|
||||
flexGrow: 1,
|
||||
}),
|
||||
control: (base, props) => ({
|
||||
...base,
|
||||
backgroundColor: props.isDisabled
|
||||
? props.theme.colors.neutral10
|
||||
: props.theme.colors.neutral5,
|
||||
}),
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user