fix(style): hint-input minwidth

This commit is contained in:
jialin
2026-03-24 16:29:41 +08:00
committed by jialin
parent 4d6af4fbf8
commit 3907e1ac76
2 changed files with 1 additions and 4 deletions
@@ -18,9 +18,6 @@ interface WrapperProps {
wrapper?: React.CSSProperties;
};
button?: React.ReactNode;
styles?: {
wrapper?: React.CSSProperties;
};
}
const Container = styled.div`
+1 -1
View File
@@ -100,7 +100,7 @@ const HintInput: React.FC<HintInputProps> = (props) => {
label={label}
options={options}
trim={trim}
style={{ flex: 1 }}
style={{ flex: 1, minWidth: 0 }}
onPaste={onPaste}
/>
);