I started using Angular Material recently and I'm using tabs. I wish I could change the color of a tab when I am pressing, but I can not. Could someone help me?
I started using Angular Material recently and I'm using tabs. I wish I could change the color of a tab when I am pressing, but I can not. Could someone help me?
Try this css:
md-tab-item:hover{
background-color: red;
}
Note that this css will apply to all tabs, there goes of your customization ...