diff --git a/public/locales/bg/campaigns.json b/public/locales/bg/campaigns.json
index 5bc6b2e03..216af68b6 100644
--- a/public/locales/bg/campaigns.json
+++ b/public/locales/bg/campaigns.json
@@ -172,7 +172,9 @@
"end-date": "Крайна дата:",
"indefinite": "Безсрочна",
"tag": "Таг:",
- "date": "Дата:"
+ "date": "Дата:",
+ "news": "Новини",
+ "wishes": "Пожелания"
},
"info-graphics": {
"donation-title": "100% от дарението отива при нуждаещите се",
diff --git a/public/locales/en/campaigns.json b/public/locales/en/campaigns.json
index 82941ee9e..a95d147bd 100644
--- a/public/locales/en/campaigns.json
+++ b/public/locales/en/campaigns.json
@@ -158,7 +158,9 @@
"start-date": "Start date:",
"end-date": "End date:",
"tag": "Tag:",
- "date": "Date:"
+ "date": "Date:",
+ "news": "News",
+ "wishes": "Wishes"
},
"info-graphics": {
"donation-title": "100% of the donation goes to those in need",
diff --git a/src/components/client/campaigns/CampaignDetails.tsx b/src/components/client/campaigns/CampaignDetails.tsx
index 4a2fa50b4..4d14b40a2 100644
--- a/src/components/client/campaigns/CampaignDetails.tsx
+++ b/src/components/client/campaigns/CampaignDetails.tsx
@@ -59,7 +59,7 @@ const StyledGrid = styled(Grid)(({ theme }) => ({
[theme.breakpoints.up('md')]: {
fontSize: theme.typography.pxToRem(45),
marginTop: 0,
- marginBottom: theme.spacing(7),
+ marginBottom: theme.spacing(1),
},
},
@@ -157,7 +157,7 @@ export default function CampaignDetails({ campaign }: Props) {
''
)}
-
+
diff --git a/src/components/client/campaigns/CampaignInfo/CampaignInfo.styled.tsx b/src/components/client/campaigns/CampaignInfo/CampaignInfo.styled.tsx
index a11589c31..5fc4905dd 100644
--- a/src/components/client/campaigns/CampaignInfo/CampaignInfo.styled.tsx
+++ b/src/components/client/campaigns/CampaignInfo/CampaignInfo.styled.tsx
@@ -75,9 +75,3 @@ export const StatusLabel = styled(Typography)(() => ({
export const StatusText = styled('span')(() => ({
fontSize: theme.typography.pxToRem(14),
}))
-
-export const ExpensesButton = styled(Button)(() => ({
- fontSize: theme.typography.pxToRem(14),
- justifyContent: 'left',
- marginBottom: theme.spacing(1),
-}))
diff --git a/src/components/client/campaigns/CampaignInfo/CampaignInfo.tsx b/src/components/client/campaigns/CampaignInfo/CampaignInfo.tsx
index 969ce8092..0092887e8 100644
--- a/src/components/client/campaigns/CampaignInfo/CampaignInfo.tsx
+++ b/src/components/client/campaigns/CampaignInfo/CampaignInfo.tsx
@@ -13,10 +13,10 @@ type Props = {
showExpensesLink: boolean
}
-export default function CampaignInfo({ campaign }: Props) {
+export default function CampaignInfo({ campaign, showExpensesLink }: Props) {
return (
-
+
diff --git a/src/components/client/campaigns/CampaignInfo/CampaignInfoStatus.tsx b/src/components/client/campaigns/CampaignInfo/CampaignInfoStatus.tsx
index 34dc1a69f..ca6766627 100644
--- a/src/components/client/campaigns/CampaignInfo/CampaignInfoStatus.tsx
+++ b/src/components/client/campaigns/CampaignInfo/CampaignInfoStatus.tsx
@@ -3,18 +3,11 @@ import { CampaignResponse } from 'gql/campaigns'
import { useTranslation } from 'next-i18next'
import { bg, enUS } from 'date-fns/locale'
-import { Grid } from '@mui/material'
-import { Assessment } from '@mui/icons-material'
+import { Box, Chip, Grid } from '@mui/material'
import { getExactDate } from 'common/util/date'
-import {
- StatusText,
- StatusLabel,
- RowWrapper,
- InfoStatusWrapper,
- ExpensesButton,
-} from './CampaignInfo.styled'
+import { StatusText, StatusLabel, RowWrapper, InfoStatusWrapper } from './CampaignInfo.styled'
type Props = {
campaign: CampaignResponse
@@ -27,11 +20,38 @@ export default function CampaignInfoStatus({ campaign, showExpensesLink }: Props
return (
- {showExpensesLink && (
- } href={'#expenses'}>
- {t('campaigns:campaign.financial-report')}
-
- )}
+
+ {showExpensesLink && (
+
+ )}
+
+
+
+
{campaign.campaignType.name}
diff --git a/src/components/client/campaigns/CampaignNewsSection.tsx b/src/components/client/campaigns/CampaignNewsSection.tsx
index 9895fa25b..9c69a1f15 100644
--- a/src/components/client/campaigns/CampaignNewsSection.tsx
+++ b/src/components/client/campaigns/CampaignNewsSection.tsx
@@ -160,7 +160,7 @@ export default function CampaignNewsSection({ campaign, canCreateArticle }: Prop
const [isExpanded, expandContent] = useShowMoreContent()
return (
-
+
{t('news')}