If there's a space in the text for an item in a dropdown, and it's to longest text in the dropdown, it will get word-wrapped.

This little snippet solves the problem
.mui-menu-item > * {
white-space: nowrap;
}
But it seems to produce an awful lot of unnecessary padding to the right for some reason

If there's a space in the text for an item in a dropdown, and it's to longest text in the dropdown, it will get word-wrapped.
This little snippet solves the problem
But it seems to produce an awful lot of unnecessary padding to the right for some reason