fix(style): hint-input minwidth
This commit is contained in:
@@ -18,9 +18,6 @@ interface WrapperProps {
|
|||||||
wrapper?: React.CSSProperties;
|
wrapper?: React.CSSProperties;
|
||||||
};
|
};
|
||||||
button?: React.ReactNode;
|
button?: React.ReactNode;
|
||||||
styles?: {
|
|
||||||
wrapper?: React.CSSProperties;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const Container = styled.div`
|
const Container = styled.div`
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ const HintInput: React.FC<HintInputProps> = (props) => {
|
|||||||
label={label}
|
label={label}
|
||||||
options={options}
|
options={options}
|
||||||
trim={trim}
|
trim={trim}
|
||||||
style={{ flex: 1 }}
|
style={{ flex: 1, minWidth: 0 }}
|
||||||
onPaste={onPaste}
|
onPaste={onPaste}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user