Skip to content

Commit bfe2d16

Browse files
committed
update margins in benefits pages
1 parent e51e3b1 commit bfe2d16

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/ui/screens/benefit-page/BenefitPageScreen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const BenefitPageScreen = ({
2626
<AppScreenWrapperContainer backTarget={'/eligibility-overview'}>
2727
<VBox sx={{ gap: { xs: 4, md: 8 } }}>
2828
<BenefitPageHeader id={id} benefit={benefitPageData} validatedStatus={validatedStatus} categoryTitles={categoryTitles} />
29-
<VBox sx={{ gap: { xs: 4, md: 8 } }}>
29+
<VBox sx={{ gap: { xs: 4, md: 8 }}}>
3030
<BenefitPageGeneral t={t} isDesktop={isDesktop} benefitPageData={benefitPageData} />
3131
<BenefitPageApplication t={t} isDesktop={isDesktop} benefitPageData={benefitPageData} xml={xml} />
3232
{

src/ui/screens/benefit-page/components/BenefitPageApplication.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const BenefitPageApplication = ({
1919
<VBox
2020
sx={{
2121
backgroundColor: 'white.main',
22-
padding: '32px',
22+
padding: { xs: '32px 20px', md: '32px' },
2323
borderRadius: theme.shape.borderRadius,
2424
boxShadow: '0px 1px 2px rgba(0, 0, 0, 0.25)',
2525
gap: 4,

src/ui/screens/benefit-page/components/BenefitPageGeneral.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const BenefitPageGeneral = ({ t, benefitPageData, isDesktop }) => {
1212
<VBox
1313
sx={{
1414
backgroundColor: 'white.main',
15-
padding: '32px',
15+
padding: { xs: '32px 20px', md: '32px' },
1616
borderRadius: theme.shape.borderRadius,
1717
boxShadow: '0px 1px 2px rgba(0, 0, 0, 0.25)',
1818
gap: 2,

src/ui/screens/benefit-page/components/BenefitPageLocal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const BenefitPageLocal = ({ t, isDesktop, localisedData }) => {
1111
<VBox
1212
sx={{
1313
backgroundColor: 'white.main',
14-
padding: '32px',
14+
padding: { xs: '32px 20px', md: '32px' },
1515
borderRadius: theme.shape.borderRadius,
1616
boxShadow: '0px 1px 2px rgba(0, 0, 0, 0.25)',
1717
gap: 4,

src/ui/screens/benefit-page/components/BenefitPageRequirements.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const BenefitPageRequirements = ({ t, isDesktop, evalGraph, benefitPageData }) =
1515
sx={{
1616
gap: 4,
1717
backgroundColor: 'white.main',
18-
padding: '32px',
18+
padding: { xs: '32px 20px', md: '32px' },
1919
borderRadius: theme.shape.borderRadius,
2020
}}
2121
>

0 commit comments

Comments
 (0)