I am using ngb tabset for tabs in my angular application. Here is the code i am using.
<ngb-tabset activeId="delegate-status" #tabs="ngbTabset" [activeId]="activeTab">
<ngb-tab title="Delegate status" id="tab-delegate-status">
<ng-template ngbTabContent class="content-container">
<delegate-status-report></delegate-status-report>
</ng-template>
</ngb-tab>
<ngb-tab title="No show" id="tab-noshow">
<ng-template ngbTabContent class="content-container">
<noshow-report></noshow-report>
</ng-template>
</ngb-tab>
</ngb-tabset>
I would like to have some button for eg: Export To CSV, on the right side which aligns the tab. Can anyone help me how to style this to have a button on the right side of this tabs?
Thanks