0
I would change the color of the ion tab, I managed to change the color of the icons and the text, but the tab itself I can not modify, I am very beginner in IONIC 3. I will show the code until then.
home-delivery.html
<ion-tabs selectedIndex="2" class="teste" >
<ion-tab [root]="entregas" tabIcon="cube" tabTitle="Entrega"></ion-tab>
<ion-tab [root]="perfil" tabIcon="person" tabTitle="perfil" ></ion-tab>
<ion-tab [root]="configuracao" tabIcon="settings" tabTitle="configuracao"></ion-tab>
</ion-tabs>
home-delivery.scss.
page-home-entregador {
.teste{
background: #545454;
}
}
tried other methods but did not work so I started trying anything. If anyone can help, thank you.
ball show...
– ElvisP