I am currently utilizing the Bootstrap active tab pane, and it is displayed as shown below:
https://i.sstatic.net/FJ4lt.png
However, I want to customize it to look like this:
https://i.sstatic.net/BUWpK.png
Specifically, I aim to have the active tab underlined in yellow.
Here's my navigation tab setup:
<p>DASHBOARD</p>
<!-- Nav tabs -->
<ul class="nav nav-tabs justify-content-center" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="login-tab" data-toggle="tab" href="#login" role="tab" aria-controls="login" aria-selected="true">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" id="sign-up-tab" data-toggle="tab" href="#sign-up" role="tab" aria-controls="sign-up" aria-selected="false">Sign-up</a>
</li>
</ul>
</div>
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane active" id="login" role="tabpanel" aria-labelledby="login-tab">
[Content here]
</div>
<div class="tab-pane" id="sign-up" role="tabpanel" aria-labelledby="sign-up-tab">Register form</div>
</div>
Currently, the tabs are styled in white with borders. However, I would like to override this styling so that when switching between tabs, the active one displays an underline border at the bottom.
How can I achieve this custom styling?