When using the Angular UI Tabs component with the attribute justified="true", everything works fine on desktop. However, I am facing an issue when the resolution changes for tablets and phones, as I want to change justified to false.
I prefer not to rely on @media-queries to manually adjust the default .nav-justified class for proper rendering.
<tabset justified="true">
<tab ng-repeat="tab in vm.tabs" heading="{{tab.title}}" active="tab.active" disabled="tab.disabled">
{{tab.content}}
</tab>
</tabset>
Any suggestions or solutions would be greatly appreciated!
Thank you!