#how to prevent overlay getting outside of a container

5 messages · Page 1 of 1 (latest)

full orchid
#
<Container size="lg">
  <Menu>
    <Menu.Target>
      <Button>Mantine</Button>
    </Menu.Target>

    <Menu.Dropdown>
      {/* this content should remain inside the container */}
    </Menu.Dropdown>
  </Menu>
</Container>
rotund yew
#
<Menu withinPortal={false}>
#

Add overflow hidden to the Container

full orchid
cloud trail