Skip to content

Commit

Permalink
style: welcome screen re-ordering enhancement for mobile view (#2474)
Browse files Browse the repository at this point in the history
* welcome screen re-ordering enhancement for mobile view

* my safe accounts moved to top
  • Loading branch information
udhaykumarbala authored Sep 6, 2023
1 parent 8c15c18 commit af99e80
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/components/welcome/NewSafe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,25 @@ const NewSafe = () => {
</Accordion>
</Box>

<Box mt={2}>
<Box mt={2} display={{ xs: 'none', md: 'block' }}>
<DataWidget />
</Box>
</Box>
</Grid>
<Grid
item
xs={12}
md={4}
lg={3.5}
minWidth={{ md: 480 }}
className={css.sidebar}
display={{ md: 'none' }}
order={3}
>
<Box>
<DataWidget />
</Box>
</Grid>

<Grid item flex={1}>
<div className={css.content}>
Expand Down

0 comments on commit af99e80

Please sign in to comment.