diff --git a/packages/devui/src/Select/Select.tsx b/packages/devui/src/Select/Select.tsx index 465ccb52..d8dc3b9e 100644 --- a/packages/devui/src/Select/Select.tsx +++ b/packages/devui/src/Select/Select.tsx @@ -44,6 +44,18 @@ export class Select extends (PureComponent || Component) { 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, + }), + }} /> ); }