mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-04 00:18:01 +01:00
feat(onboarding): improve steps dividers (#8346)
This commit is contained in:
parent
e8e005daa4
commit
0bf385d601
@ -40,11 +40,10 @@ const TitleBox = styled('div')(({ theme }) => ({
|
|||||||
const Actions = styled('div')(({ theme }) => ({
|
const Actions = styled('div')(({ theme }) => ({
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
flexGrow: 1,
|
flexGrow: 1,
|
||||||
gap: theme.spacing(7),
|
padding: theme.spacing(0, 1),
|
||||||
padding: theme.spacing(3, 5),
|
|
||||||
[theme.breakpoints.down('md')]: {
|
[theme.breakpoints.down('md')]: {
|
||||||
flexDirection: 'column',
|
flexDirection: 'column',
|
||||||
gap: theme.spacing(7),
|
padding: theme.spacing(0),
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
@ -53,6 +52,15 @@ const ActionBox = styled('div')(({ theme }) => ({
|
|||||||
display: 'flex',
|
display: 'flex',
|
||||||
gap: theme.spacing(3),
|
gap: theme.spacing(3),
|
||||||
flexDirection: 'column',
|
flexDirection: 'column',
|
||||||
|
borderRight: `1px solid ${theme.palette.divider}`,
|
||||||
|
padding: theme.spacing(4),
|
||||||
|
[theme.breakpoints.down('md')]: {
|
||||||
|
borderRight: 0,
|
||||||
|
borderBottom: `1px solid ${theme.palette.divider}`,
|
||||||
|
},
|
||||||
|
'&:last-child': {
|
||||||
|
borderWidth: 0,
|
||||||
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const TitleContainer = styled('div')(({ theme }) => ({
|
const TitleContainer = styled('div')(({ theme }) => ({
|
||||||
|
Loading…
Reference in New Issue
Block a user