Text link doesn't get styled when using color schemes for navbar
Created by: sebask
I am not sure if this actual a bug, or expected behaviour, but I think this might be worth changing.
Expected behaviour: When I use certain color schemes (background) in combination with a navbar, while using text, while using plain links. I expect the link to be colored in a way it's readable, thus enough contrast. Just like the text is readable.
Actual behaviour: When I use certain color schemes (background) in combination with a navbar, while using text, while using plain links. The links do not get colored (with enough contrast). Rendering it unreadable while using it in combination with certain background color schemes.
<div class="navbar navbar-expand navbar-dark bg-primary">
<span class="navbar-text mx-auto">
<small>We gebruiken cookies om de site te analyseren, te verbeteren en voor tracking doeleinden. Als je de website blijft gebruiken gaan we ervan uit dat je dat goed vindt. <a href="#">Lees Meer</a></small>
</span>
</div>
I understand I can solve it by adding a color scheme to the link (i.e.: <a class="text-light" href="#">Lees Meer</a>
). But I think it should work without it.