skid
skid

Reputation: 978

How do I change the color of md-tab-header?

Is there a way to change the color of md-tab's header to yellow?

I tried the following code but it does not work:

.mat-tab-label.mat-tab-ripple {
   background-color: red;
}

Does anyone has this issue? Thanks in advance!

Upvotes: 1

Views: 1492

Answers (1)

Ricardo D. Quiroga
Ricardo D. Quiroga

Reputation: 170

Add in the following code to your css file:

.mat-tab-label.mat-tab-ripple {
   background-color: red !important;
}

It worked for me!

Upvotes: 1

Related Questions