1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00

fix: strategy form buttons spacing (#7468)

This commit is contained in:
Tymoteusz Czech 2024-06-27 11:04:06 +02:00 committed by GitHub
parent 47b0c61670
commit 1cdbd21212
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -87,7 +87,7 @@ const StyledForm = styled('form')(({ theme }) => ({
flexDirection: 'column', flexDirection: 'column',
gap: theme.spacing(2), gap: theme.spacing(2),
padding: theme.spacing(6), padding: theme.spacing(6),
paddingBottom: theme.spacing(12), paddingBottom: theme.spacing(16),
paddingTop: theme.spacing(4), paddingTop: theme.spacing(4),
overflow: 'auto', overflow: 'auto',
height: '100%', height: '100%',
@ -107,9 +107,11 @@ const StyledButtons = styled('div')(({ theme }) => ({
left: 0, left: 0,
position: 'absolute', position: 'absolute',
display: 'flex', display: 'flex',
padding: theme.spacing(3), gap: theme.spacing(1),
paddingTop: theme.spacing(3),
paddingRight: theme.spacing(6), paddingRight: theme.spacing(6),
paddingLeft: theme.spacing(6), paddingLeft: theme.spacing(6),
paddingBottom: theme.spacing(6),
backgroundColor: theme.palette.background.paper, backgroundColor: theme.palette.background.paper,
justifyContent: 'end', justifyContent: 'end',
borderTop: `1px solid ${theme.palette.divider}`, borderTop: `1px solid ${theme.palette.divider}`,