Skip to content

Commit

Permalink
chore: fix release template strategy padding and spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
daveleek committed Jan 16, 2025
1 parent d20af9e commit c2afa62
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,17 @@ const StyledCancelButton = styled(Button)(({ theme }) => ({
marginLeft: theme.spacing(3),
}));

const StyledButtonContainer = styled('div')(() => ({
const StyledButtonContainer = styled('div')(({ theme }) => ({
marginTop: 'auto',
display: 'flex',
justifyContent: 'flex-end',
gap: theme.spacing(1),
paddingTop: theme.spacing(3),
paddingRight: theme.spacing(6),
paddingLeft: theme.spacing(6),
paddingBottom: theme.spacing(6),
backgroundColor: theme.palette.background.paper,
borderTop: `1px solid ${theme.palette.divider}`,
}));

const StyledHeaderBox = styled(Box)(({ theme }) => ({
Expand Down Expand Up @@ -234,6 +241,7 @@ export const ReleasePlanTemplateAddStrategyForm = ({
return (
<FormTemplate
modal
disablePadding
description={featureStrategyHelp}
documentationLink={featureStrategyDocsLink}
documentationLinkLabel={featureStrategyDocsLinkLabel}
Expand Down

0 comments on commit c2afa62

Please sign in to comment.