Wrapping tab labels - RadzenTabs

I applied the suggestion given in: Responsive tabs - Radzen Studio / Blazor Server - Radzen

ul[role=tablist] {
flex-wrap: wrap;
}

to wrap the tab labels using the the RadzenTabs component and worked perfectly. But after updating to the latest versions of the components, that tweak in the css does not work anymore. Any ideas about why or is there another way to do it now?

Hi @Mike_T_Angelo,

The role has been changed to presentation to address screen reader issues. That said, here's the working CSS:

ul[role=presentation] {
    flex-wrap: wrap;
}