Struggling to change the color and border in a Bootstrap nav bar with SCSS. Despite writing the code below, nothing seems to happen:
.nav-link.active {
color: #495057;
background-color: chartreuse;
border-color: black;
}
After inspecting the element in Chrome, it seems my code is being ignored and only the default Bootstrap style is applied.
Would appreciate any assistance with this issue.
Thank you.