Skip to content

Commit

Permalink
Improve styles for multi-select values #670.
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelBurgess committed Jan 14, 2025
1 parent fb6970a commit e0ed8f3
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,34 @@ const useSelectInputStyles = () => {
color: foreground,
};
},
multiValue: (provided) => {
return {
...provided,
background,
color: foreground,
};
},
multiValueContainer: (provided) => {
return {
...provided,
background,
color: foreground,
};
},
multiValueRemove: (provided) => {
return {
...provided,
background,
color: foreground,
};
},
multiValueLabel: (provided) => {
return {
...provided,
background,
color: foreground,
};
},
menu: (provided) => {
return {
...provided,
Expand Down

0 comments on commit e0ed8f3

Please sign in to comment.