Dave
Dave

Reputation: 7359

PrimeNG Angular Take out the border of TabMenu Selected

I need to take out the border of TabMenu in PrimeNG when it is selected one tab.

enter image description here

I am using the latest version or PrimeNG and angular 11.

How can I do it?

Upvotes: 1

Views: 885

Answers (1)

Dave
Dave

Reputation: 7359

Fount the solution:

.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus {
  box-shadow: unset !important;
}

Upvotes: 1

Related Questions