I've defined a CSS class as follows:
.panel-mobile-navs > ul > li {
width:100%
}
Within the HTML, I am utilizing Ngx-bootstrap for a series of tabs like this:
<tabset class="panel-mobile-navs" > ... </tabset>
My intention is to modify the styling of the elements within it. However, upon page load, the generated HTML inside the "tabset" element looks like this:
<ul class="nav nav-tabs" ng-reflect-klass="nav" ng-reflect-ng-class="[object
Object]">
...
<li class="nav-item" ng-reflect-ng-class="nav-item,"> ... </li>
</ul>
Despite my created CSS class, it doesn't seem to apply to the ul and li elements. Could it be an issue with my CSS implementation? Your help is greatly appreciated.