I'm attempting to customize a navbar using Bootstrap 4.2.1. I've managed to customize everything except the color of the HOVER link text that appears under the hamburger menu (on a small viewport). In a wider viewport, the CSS below does the trick to specify the link's hover color. What am I missing to be able to change the hover link text on a small viewport?
.navbar-custom .nav-item:focus .nav-link,
.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
color: #000; }