I'm struggling to place a colored WhatsApp image on the right side of an ion-label. Here's what I have so far:
<ion-row>
<ion-col size="10">
<ion-label position="floating">Contato 1* </ion-label>
</ion-col>
<ion-col size="2">
<ion-img class="whatsapp"></ion-img>
</ion-col>
</ion-row>
CSS :
.whatsapp {
height: 20px;
width: 20px;
background-image: url("../../assets/whatsapp.png");
background-repeat: no-repeat;
background-size: 100%;
background-position: bottom left;
}
PS: I've tried using
ion-img [src]="assets/whatsapp" /ion-img
, but it doesn't work!
https://i.sstatic.net/bLSDQ.jpg
I followed @Carlos Del Cura Pascual's advice, and now my layout is almost perfect.