Skip to content

Commit c2bc1cb

Browse files
committed
minor color update
1 parent dc02612 commit c2bc1cb

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ const EligibilityOverviewItem = ({ t, item, eligible }) => {
7070
<EligibilityOverviewTag key={tag.id} tag={tag.label} tagType={key} />
7171
))
7272
)
73-
)
74-
)}
73+
))
74+
}
7575
</HBox>
7676
<Divider sx={{ color: 'dark.light', borderStyle: 'dashed' }} />
7777
<HBox sx={{ flexWrap: 'wrap', gap: 2, alignItems: 'center' }}>
@@ -83,7 +83,6 @@ const EligibilityOverviewItem = ({ t, item, eligible }) => {
8383
)
8484
}
8585
{eligible === 'indeterminate' &&
86-
8786
<RegularButton
8887
variant={'pinkContained'}
8988
onClick={() => {
@@ -103,7 +102,6 @@ const EligibilityOverviewItem = ({ t, item, eligible }) => {
103102
size='small'
104103
/>
105104
</HBox>
106-
107105
</VBox>
108106
</VBox>
109107
);

src/ui/shared-components/Layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {useStore} from "./ViewportUpdater";
55

66
const Layout = ({children, isApp = false, logo = true, back = null, gap = 2}) => {
77
const isDesktop = useStore((state) => state.isDesktop);
8-
const backgroundColor = isApp ? 'blue.dark' : 'transparent';
8+
const backgroundColor = isApp ? 'blue.dark' : 'white.main';
99
const minHeight = isApp ? '100vh' : 'auto';
1010

1111
return (

0 commit comments

Comments
 (0)