Skip to content

Commit

Permalink
Adjust padding that was lost when TabPanels were replaced
Browse files Browse the repository at this point in the history
Signed-off-by: Paola <[email protected]>
  • Loading branch information
paolareategui committed May 7, 2024
1 parent 97dbde9 commit 1833682
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/form-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export const FormEditor = ({ viewSetId, moveCallback, moveButtonsDisabled, handl


return (
<Grid container spacing={2}>
<Grid container spacing={2} pt={3}>
<Grid container item xs={12} spacing={1.75}>
<Grid item xs={12} sm={2}>
<Button variant="text" color="error" size="medium" startIcon={<DeleteRoundedIcon />} onClick={deleteConfirmation}>
Expand Down
4 changes: 3 additions & 1 deletion src/components/notebook-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ export const NotebookEditor = () => {
<Tab label="Export" component={Link} to="/export" value="/export" />
</TabList>
</Box>
<Outlet />
<Box p={3}>
<Outlet />
</Box>
</TabContext>
</Box>
</Box>
Expand Down

0 comments on commit 1833682

Please sign in to comment.