Skip to content

Commit

Permalink
Reduce spacing after the title
Browse files Browse the repository at this point in the history
  • Loading branch information
ani-kalpachka committed Sep 18, 2023
1 parent ab68244 commit cfd8e39
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/client/campaign-news/CampaignNewsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const Root = styled(Layout)(({ theme }) => ({
fontSize: theme.typography.pxToRem(45),
lineHeight: theme.typography.pxToRem(60),
letterSpacing: theme.typography.pxToRem(-1.5),
marginBottom: theme.spacing(2),
marginBottom: theme.spacing(1),
},

'.ql-video, img': {
Expand Down Expand Up @@ -81,7 +81,6 @@ export default function CampaignNewsPage({ page, slug = null }: Props) {
}>
<Grid>
<Grid
mb={4}
sx={{
padding: theme.spacing(0, 3),
margin: '0 auto',
Expand All @@ -98,7 +97,7 @@ export default function CampaignNewsPage({ page, slug = null }: Props) {
{t('news')}
</Typography>
<BreadcrumbWrapper crumb={breadcumbData} />
<Divider orientation="horizontal" />
<Divider orientation="horizontal" sx={{ marginBottom: theme.spacing(4) }} />
</Grid>
{data && data?.campaign.campaignNews.length > 0 && (
<CampaignNewsList articles={data.campaign.campaignNews} />
Expand Down

0 comments on commit cfd8e39

Please sign in to comment.