Describe your motivation
Using Vaadin 24.2.1. If the width of the navigation link text exceeds the width of the navigation component I would like the link text to wrap. Using the current CSS selectors available I tried:
vaadin-side-nav-item::part(link) {
white-space: break-spaces;
}
But this has no effect as the white-space property is applied to an internal slot element that apparently has no selectors
Describe the solution you'd like
A CSS new selector and/or API for the Side Navigation component that allows you modify white-space property for navigation link
Describe alternatives you've considered
Tried different selectors with no success
Additional context
No response