mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +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 }) => ({
|
||||
display: 'flex',
|
||||
flexGrow: 1,
|
||||
gap: theme.spacing(7),
|
||||
padding: theme.spacing(3, 5),
|
||||
padding: theme.spacing(0, 1),
|
||||
[theme.breakpoints.down('md')]: {
|
||||
flexDirection: 'column',
|
||||
gap: theme.spacing(7),
|
||||
padding: theme.spacing(0),
|
||||
},
|
||||
}));
|
||||
|
||||
@ -53,6 +52,15 @@ const ActionBox = styled('div')(({ theme }) => ({
|
||||
display: 'flex',
|
||||
gap: theme.spacing(3),
|
||||
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 }) => ({
|
||||
|
Loading…
Reference in New Issue
Block a user