Hello there, I've come across the following layout:
<Box width="100%" height="100%" p={1}>
<Box my={1} display="flex" justifyContent="center">
</Box>
<Box color="text.disabled">
</Box>
<Box mt={3}>
position at bottom
</Box>
</Box>
My goal is to properly align the box at the bottom of its parent element. I have attempted the following solutions:
marginTop: "auto"
bottom: 0
Unfortunately, none of these approaches seem to be successful in achieving the desired outcome.