I have
<v-text-field hide-details class="search-field" id="name-input" placeholder="Search by name" v-model="search"></v-text-field>
in my code, and I want to change the font color of the placeholder. In my css:
.search-field input::placeholder{
color: red!important;
}
But it doesn't work.
Inside the v-text-field it is an input as shown below:
Could anyone point out where I did wrong? Thank you!
