The autocomplete menu is positioned wrongly when the container has a transform css rule
I put autocomplete component in a react modal, which is centered by transform css rule:
transform: translate(-50%, -50%);
Then autocomplete menu displays at wrong position without consider the transform. Anyone knows about this?
Hey @elvinfucom , did you figure this out?
I noticed the menu gets a position: fixed style based on its current position, which also makes it hard to align it to the right.
@markmssd yes, I made a workaround finally.
Instead of fixing the autocomplete menu, I fixed the react modal by overwrite transform to disable it.
Then the menu works well.
I fixed this by replacing transform in the parent div / container with another centering method