I am recently learning NextJS with Chakra-UI. However, I faced some difficulties with responsive UI.
Here is the screenshot.
<Box mt={5}>
<LightMode>
<ButtonGroup>
{socialButtons.map((social) => (
<SocialButton social={social} key={social.name}/>
))}
</ButtonGroup>
</LightMode>
</Box>
How can I move the button to bottom to match screen's responsive?
