I'm using MUI v6.0.2 and I came across an issue with popper placement. When I scroll up and try to open a date picker it doesn't open on the top of the input, but somewhere upper in the page. Bottom placement works good, as expected. But it looks something wrong with placement top.
My dependency:
"@mui/x-date-pickers": "^6.0.4",
Import:
import { DatePicker } from '@mui/x-date-pickers/DatePicker';
That's my code. I didn't pass any other properties to the component.
<Box marginTop={'1000px'}>
<h2>Date picker</h2>
<DatePicker />
</Box>