Reputation: 257
There is a scrolling problem when Select (React Select) is used in Dialog (Mui Dialog). Scrolling is required within the modal.
As seen in the pictures, when I use Mui Select, the modal is used without causing problems by overflowing. How can I do this with React select?
zIndex values were given to the styles property of React select, but it did not work.
container: (baseStyles: any) => ({
...baseStyles,
zIndex: 9999
}),
menu: (baseStyles: any) => ({
...baseStyles,
zIndex: 9999
}),
Upvotes: 0
Views: 51