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:
Source:stackexchange.com