How to remove small caret from ion-select in ionic4

前端 未结 10 1334
春和景丽
春和景丽 2021-01-17 22:21

I want to remove the inbuilt grey small caret from ion-select, and use my custom caret(arrow) instead.

Code:

ion-select {
  color: grey         


        
10条回答
  •  执笔经年
    2021-01-17 23:02

    To remove the icon,

     ion-select::part(icon) {
        display: none !important;
       }
    

    To modify the icon,

      ion-select::part(icon) {
        color: #ffa612 !important;
       }
    

提交回复
热议问题