I'm working on setting up UI Bootstrap tabs, and for reference you can find the plunker here. My goal is to hide the tabs since I will be utilizing a button to switch between them.
Despite adding the following CSS class to my file, the styling is not being applied to the tabs:
.nav-tabs {
border-bottom: 1px solid #ddd;
display: none;
}
Specifically, I aim to hide this element. What would be the best approach to achieve this?