Я создал раскрывающееся меню с помощью Material-UI, и меня раздражает одна вещь: я хочу, чтобы мое раскрывающееся меню появлялось под полосой, когда я щелкаю по ней, но каждый раз, когда оно закрывает панель ( как на изображении ниже)
Is there any way I can do to let the drop-down menu appear below the bar? (not covering the Your order
label and the number)
My codes are as below: I try to modify the anchorOrigin
property and transformOrigin
property but it didn't work.
<Menu
id="order-menu"
anchorEl={anchorEl}
keepMounted
open={Boolean(anchorEl)}
onClose={() => setAnchorEl(null)}
elevation={20}
getContentAnchorEl={null}
anchorOrigin={{ vertical: "bottom", horizontal: "center", }}
transformOrigin={{ vertical: -100, horizontal: 150, }} >
Я буду очень признателен за вашу помощь!