tbleckert / react-select-search

⚡️ Lightweight select component for React
https://react-select-search.vercel.app
MIT License
678 stars 147 forks source link

Couldn't find the css class for placeholder text color #197

Closed Mokin711 closed 3 years ago

Mokin711 commented 3 years ago

I am looking for the css class that is responsible for styling the placeholder text in search, specifically the color. I went to the style.css and tried every single class provided but none of them seemed to work.

tbleckert commented 3 years ago

Hi @Mokin711 ! If you use the built-in components, you can change the placeholder color with:

.select-search__input::placeholder {
    color: red;
}