I'm having an issue with the collapsible sidebar and tabs on my angularjs page. The scroll bar is not appearing when there is overflow in the sidebar. I've tried setting the scrollbar height to auto and overflow-y to scroll, but it's not working as expected. Does anyone know how to fix this?
Below is the code snippet:
CSS
#wrapper {
// CSS code here
}
// More CSS code...
.scrollbar {
// Scrollbar CSS properties
}
HTML
<tabset justified="true">
<tab heading="CONTACTS">
<div class="tab-content">
// HTML content for Contacts tab
</div>
</tab>
<tab heading="RECENT">
<div class="tab-content">
// HTML content for Recent tab
</div>
</tab>
</tabset>