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

fix: save context button spacing (#9059)

This commit is contained in:
Mateusz Kwasniewski 2025-01-03 15:01:46 +01:00 committed by GitHub
parent 4f6e581dec
commit 790d813455
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -69,11 +69,11 @@ const StyledSwitchContainer = styled('div')({
marginLeft: '-9px',
});
const StyledButtonContainer = styled('div')({
marginTop: 'auto',
const StyledButtonContainer = styled('div')(({ theme }) => ({
marginTop: theme.spacing(3),
display: 'flex',
justifyContent: 'flex-end',
});
}));
const StyledCancelButton = styled(Button)(({ theme }) => ({
marginLeft: theme.spacing(3),