Changing the background color in SideNav

We have changed the background color in a SideNav instance. We are attempting to change the color of the presented text to match. We are not able to figure out the selector for when the mouse is hovering over one of the menu items. What is the CSS selector for ‘hover’ for ‘vaadin-side-nav-item’? We have tried every combination we can think of with no success.

vaadin-side-nav-item::part(link):hover {
    color: red;
}
1 Like

That’s it! Thank you!!!

1 Like