fix(catalog-import): Fix stepper component order.

Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
Signed-off-by: josh <josh.timmons@hashicorp.com>
This commit is contained in:
Carlos Esteban Lopez
2023-06-01 16:37:40 -05:00
committed by josh
parent 839cb29b3b
commit 621c58329a
@@ -47,14 +47,14 @@ export const DefaultImportPage = () => {
</SupportButton>
</ContentHeader>
<Grid container spacing={2} direction="row-reverse">
<Grid item xs={12} md={4} lg={6} xl={8}>
<ImportInfoCard />
</Grid>
<Grid container spacing={2}>
<Grid item xs={12} md={8} lg={6} xl={4}>
<ImportStepper />
</Grid>
<Grid item xs={12} md={4} lg={6} xl={8}>
<ImportInfoCard />
</Grid>
</Grid>
</Content>
</Page>