I'm struggling to position a TextField/Autocomplete with a loader/linear progress at the bottom without it pushing the TextField/Autocomplete upwards. Can anyone suggest a proper solution for this issue?
For reference, you can check out the Codesandbox demo HERE
https://i.sstatic.net/nVuvg.png
<Grid component="div" item xl={2} lg={2} md={2} sm={12} xs={12}>
<CategorySelect />
<Box
sx={{
marginTop: "0.5rem"
}}
>
<LinearProgress />
</Box>
</Grid>