sanusart / react-dropdown-select

Customisable dropdown select for react
https://react-dropdown-select.netlify.app/
MIT License
351 stars 82 forks source link

Can not style grey placeholder text #234

Closed Esylus closed 2 years ago

Esylus commented 2 years ago

I've tried every CSS command that can be found, I can't seem to update the color or fontSize of the placeholder text.

In the StyledSelect 'style' object, some values, such as fontSize and fontFamily, affect both the placeholder and dropdown items together while other commands, such as fontWeight, only affect the dropdown items.

Is there any way to independently change the placeholder color, size and fontWeight?

Cheers,

Screen Shot 2022-05-24 at 6 42 42 PM

sanusart commented 2 years ago
.react-dropdown-select input::placeholder {
  color: red;
}