css - ionic icon how to show color -


icon name: moment.png

this icon real color

enter image description here

but when input in scss file, color changed black , white

enter image description here

this scss file

ion-icon {     &[class*="minan-"] {         // instead of using font-based icons         // we're applying svg masks         mask-size: contain;         mask-position: 50% 50%;         mask-repeat: no-repeat;         background: currentcolor;         width: 1em;         height: 1em;     } &[class*="minan-wechatmoment"] {         mask-image: url(../assets/icon/moment.png);     } } 


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -