How do I change the color of the md-tab when I press?

0

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?

    
asked by anonymous 25.07.2016 / 01:28

1 answer

0

Try this css:

md-tab-item:hover{
   background-color: red;
}

Note that this css will apply to all tabs, there goes of your customization ...

    
27.07.2016 / 16:24