Hi,
I am trying to accomplish this design. The image should be hidden on sm and form should take 100% width. however, the form on sm is fixed to content even though the content is a flex itself.
return (
<Center className={classes.container}>
<Grid gutter={25}>
<Grid.Col md={6} style={{
backgroundColor: "red",
}}>
<Outlet />
</Grid.Col>
<Grid.Col md={6}>
<MediaQuery smallerThan="md" styles={{
display: "none"
}}>
<Image
src={Illustration}
/>
</MediaQuery>
</Grid.Col>
</Grid>
</Center>
)
any idea?