Note that this is for MUI v5 @mui/material and NOT using v4 @material-ui/core
After finally figuring out how to make @mui/material styles show when using an entry point to emotion to insert scoped shadow DOM styles (see this post
Dropdown options are showing like this:
CodePudding user response:
You should add MenuProps.disablePortal = true
to mount Menu inside shadow DOM (to be able to use scoped styles)
<Select MenuProps={{ disablePortal: true }}>