Skip to content

Commit

Permalink
fix: save context button spacing (#9059)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Jan 3, 2025
1 parent 4f6e581 commit 790d813
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/component/context/ContextForm/ContextForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 790d813

Please sign in to comment.