Skip to content

Commit

Permalink
fix: currency select page setion header bgcolor (#2687)
Browse files Browse the repository at this point in the history
  • Loading branch information
ezailWang authored Mar 9, 2023
1 parent 35a4a42 commit 020ebb2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ type CurrencySectionLableProps = {
};

const CurrencySectionLable: FC<CurrencySectionLableProps> = ({ title }) => (
<Box px={{ base: '16px', md: '24px' }} my={2}>
<Box px={{ base: '16px', md: '24px' }} py={2} bgColor="background-default">
<Typography.Subheading color="text-subdued">{title}</Typography.Subheading>
</Box>
);
Expand Down Expand Up @@ -281,7 +281,7 @@ const CurrencySelectModal: FC = () => {
<KeyboardAvoidingView flex={1}>
<SectionList
flex={1}
py={1}
mt={1}
contentContainerStyle={{ paddingBottom: bottom }}
sections={terms.length > 0 ? searchList : ratesSectionList}
renderItem={renderItem}
Expand Down

0 comments on commit 020ebb2

Please sign in to comment.