Skip to content

Commit

Permalink
update default left margin offset given default left width
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhuff committed Feb 22, 2024
1 parent 01b3bd5 commit b06b048
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/molecules/LegacyModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ export const LegacyModal = (props: LegacyModalProps): JSX.Element => {
header={modalHeader}
onOutsideClick={closeOnOutsideClick ?? false ? onClose : undefined}
// center within viewport aside from nav
marginLeft={styleProps.marginLeft ?? '7.125rem'}
{...props}
marginLeft={styleProps.marginLeft ?? '5.656rem'}
{...styleProps}
footer={footer}
>
<Box padding={childrenPadding}>{children}</Box>
Expand Down

0 comments on commit b06b048

Please sign in to comment.