I have an Ionic 3 app I'm working on where I have a search field. I'm trying to color it with a dark background and white text.
I have the following code, which works fine on the background, but the default icon and placeholder text are not turning white:
.searchbar {
background-color:#2f303e;
color:#fff;
.searchbar-input {
background-color:#2f303e;
color:#fff;
}
}
Here is the component:
<ion-searchbar (ionInput)="getItems($event)"></ion-searchbar>
What am I missing?