Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit cf1e637

Browse files
committed
fix: issue #138
1 parent e7aa3dc commit cf1e637

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/components/ReactSelect/index.jsx

+5
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,17 @@ const ReactSelect = (props) => {
6363
...provided,
6464
margin: "3px 3px",
6565
color: state.isDisabled ? "#808080" : "#AAAAAA",
66+
paddingRight: state.isDisabled ? "6px" : "0",
6667
fontFamily: "Roboto",
6768
fontSize: "14px",
6869
lineHeight: "22px",
6970
textAlign: "left",
7071
borderRadius: "5px",
7172
}),
73+
multiValueRemove: (provided, state) => ({
74+
...provided,
75+
display: state.isDisabled ? "none" : provided.display,
76+
}),
7277
dropdownIndicator: () => ({
7378
display: "none",
7479
}),

0 commit comments

Comments
 (0)