Reputation: 7359
I need to take out the border of TabMenu in PrimeNG when it is selected one tab.
I am using the latest version or PrimeNG and angular 11.
How can I do it?
Upvotes: 1
Views: 885
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