Skip to content

Commit b494ae3

Browse files
committed
make benefits list a little wider
1 parent 141c556 commit b494ae3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ui/screens/eligibilty-overview/components/EligibilityOverviewSection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const EligibilityOverviewSection = ({ t, category, isDesktop, eligibilitySection
1313
<VBox sx={{
1414
gap: 4,
1515
backgroundColor: 'white.main',
16-
padding: '32px',
16+
padding: {xs: '32px 20px', md: '32px'},
1717
borderRadius: theme.shape.borderRadius,
1818
}}>
1919
<Typography variant="h4" sx={{ color: 'pink.main', fontWeight: '400' }}>
@@ -27,7 +27,7 @@ const EligibilityOverviewSection = ({ t, category, isDesktop, eligibilitySection
2727
{eligibleBenefitsComplete.length > 0 &&
2828
<EligibilityOverviewList t={t} isDesktop={isDesktop} items={eligibleBenefitsComplete} eligible={'eligible'} />}
2929
{ineligibleBenefits.length > 0 &&
30-
<EligibilityOverviewList t={t} isDesktop={isDesktop} items={ineligibleBenefits} eligible={'non-eligible'} />}
30+
<EligibilityOverviewList t={t} isDesktop={isDesktop} items={ineligibleBenefits} eligible={'non-eligible'} />}
3131
{undeterminableBenefits.length > 0 &&
3232
<EligibilityOverviewList t={t} isDesktop={isDesktop} items={undeterminableBenefits} eligible={'indeterminate'} />}
3333
</VBox>

0 commit comments

Comments
 (0)