I've been attempting to modify the color of a navbar link in Bootstrap 4 by using the following code:
.nav-link {
color: red;
}
In my SCSS file, I have it set up like this:
@import '../../public_html/static/vendor/bootstrap/scss/bootstrap';
.nav-link {
color: red;
}
Unfortunately, without using !important, the color change is not taking effect.
https://i.sstatic.net/uuoiH.png
Can someone point out what I may be overlooking?