Skip to content

Commit

Permalink
Restore spacing to the collection modal dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed Nov 21, 2023
1 parent 0847e2a commit c73d29a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/CollectionDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ import ScrollIndicatedDialogContent from '../containers/ScrollIndicatedDialogCon
import ManifestInfo from '../containers/ManifestInfo';

const StyledScrollIndicatedDialogContent = styled(ScrollIndicatedDialogContent)(() => ({
padding: 1,
padding: (theme) => theme.spacing(1),
}));

const StyledCollectionMetadata = styled('div')(() => ({
padding: 2,
padding: (theme) => theme.spacing(2),
}));

const StyledCollectionFilter = styled('div')(() => ({
padding: 2,
padding: (theme) => theme.spacing(2),
paddingTop: 0,
}));

Expand Down Expand Up @@ -202,7 +202,7 @@ export class CollectionDialog extends Component {
<Typography component="div" variant="overline">
{ t(isMultipart ? 'multipartCollection' : 'collection') }
</Typography>
<Typography variant="h3">
<Typography component="div" variant="h3">
{CollectionDialog.getUseableLabel(manifest)}
</Typography>
</DialogTitle>
Expand Down

0 comments on commit c73d29a

Please sign in to comment.