I am trying to customize the appearance of my search box by making the text color white. However, even after changing the placeholder color and text color to white in my CSS code, the text color only changes to white when the user clicks out of the form. While typing, it remains the default grey color from Bootstrap.
Is there a way to make the text color white while typing as well? Here is my CSS code in the style.scss
file:
.form-control {
background-color: transparent !important;
color: white;
&::placeholder {
color: white;
opacity: 1;
}
}