Skip to content

Commit

Permalink
fix: some margin inconsistencies (#1198)
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh authored Apr 29, 2024
1 parent 0f3cb22 commit b9dd11c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/main/ItemsToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const ItemsToolbar = ({
return (
<>
<Stack direction="row" justifyContent="space-between" spacing={1}>
<Typography variant="h4" sx={{ wordWrap: 'break-word' }}>
<Typography variant="h2" component="h1" sx={{ wordWrap: 'break-word' }}>
{title}
</Typography>
<Stack
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/PublishedItemsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const PublishedItemsLoadableContent = (): JSX.Element | null => {
<Helmet>
<title>{translateBuilder(BUILDER.PUBLISHED_ITEMS_TITLE)}</title>
</Helmet>
<Box mx={2}>
<Box m={2}>
<ItemHeader showNavigation={false} />
<Items
id={PUBLISHED_ITEMS_ID}
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/RecycledItemsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const RecycleBinLoadableContent = (): JSX.Element | null => {
<Helmet>
<title>{translateBuilder(BUILDER.RECYCLE_BIN_TITLE)}</title>
</Helmet>
<Box id={RECYCLED_ITEMS_ROOT_CONTAINER} mx={2}>
<Box id={RECYCLED_ITEMS_ROOT_CONTAINER} m={2}>
<ItemHeader showNavigation={false} />
<Items
id={RECYCLED_ITEMS_ID}
Expand Down

0 comments on commit b9dd11c

Please sign in to comment.