Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Perronef5 committed Oct 17, 2024
1 parent cb60753 commit 2934748
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/components/BalanceText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ const BalanceText = () => {
return (
<Box>
<Box flexDirection="row" alignItems="flex-end">
<Text adjustsFontSizeToFit variant="displayLgBold" color="primaryText">
$
</Text>
<AnimatedNumbers
includeComma
animateToNumber={realAmount || 0}
Expand Down
11 changes: 9 additions & 2 deletions src/features/onboarding/import/ImportSubAccountsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ export default () => {
<ScrollBox
backgroundColor="primaryBackground"
contentContainerStyle={{
flex: 1,
backgroundColor: colors.primaryBackground,
flex: 1,
}}
refreshControl={
<RefreshControl
Expand All @@ -242,6 +242,7 @@ export default () => {
paddingHorizontal="4"
>
<Text
color="primaryText"
variant="displayMdRegular"
mt="8"
textAlign="center"
Expand All @@ -251,7 +252,13 @@ export default () => {
>
{t('accountImport.privateKey.selectAccounts')}
</Text>
<Text textAlign="center" p="2" variant="textMdRegular" mb="6">
<Text
textAlign="center"
p="2"
variant="textMdRegular"
mb="6"
color="secondaryText"
>
{t('accountImport.privateKey.selectAccountsBody')}
</Text>
{error && (
Expand Down

0 comments on commit 2934748

Please sign in to comment.