I've been working on creating a custom bootstrap navbar tabs, but I'm struggling to remove the borders and apply the custom colors. After some trial and error, here's what I have so far:
.nav-tabs, .nav-pills {
text-align: center;
border: none;
}
.nav-tabs > li > a, .nav-tabs > li.active > a {
border-radius: 0;
}
Here is my current progress: https://i.sstatic.net/2ILak.png
And this is my desired outcome:
https://i.sstatic.net/ZqPXE.png
<div class="row justify-content-center">
<div class="col-7">
<ul class="nav nav-tabs nav-justified mb-4" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<button style="text-align:right; font-family: 'Remora', sans-serif; padding-right: 30px;" class="nav-link active" id="basicInfo-tab" data-bs-toggle="tab" data-bs-target="#basicInfo" type="button" role="tab" aria-controls="basicInfo" aria-selected="true">Basic Info</button>
</li>
<li class="nav-item" role="presentation">
<button style="text-align:left; font-family: 'Remora', sans-serif; padding-left: 30px;" class="nav-link" id="CGM-tab" data-bs-toggle="tab" data-bs-target="#systemUse" type="button" role="tab" aria-controls="systemUse" aria-selected="false">System use</button>
</li>
</ul>
</div>
</div>