[Vuejs]-Md-select arrow color change

1👍

The dropdown’s caret is being added via the ::after property. You can change it’s values in CSS using:

.md-select:after {
  /* CSS Properties Here */
}

As seen in this CodePen, you may have to increase the priority of the CSS selector. On a similar note – you should be able to use Google Chrome’s Inspector to see the element in question:

enter image description here

2👍

add this css

.md-select::after {
    color: red !important;
}

Leave a comment