Skip to content

Commit

Permalink
tweak: change balance naming and fix color of pending balance
Browse files Browse the repository at this point in the history
  • Loading branch information
brusherru committed Dec 17, 2024
1 parent 53bd638 commit 32cced6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/screens/WalletScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function WalletScreen(): JSX.Element {
? `Available balance: ${balance.projected} Smidge\n`
: ''
}Actual balance: ${balance.current} Smidge`}
color={pendingBalance ? 'brand.orange' : 'white'}
color={pendingBalance ? 'orange' : 'white'}
>
{pendingBalance ? (
<Icon
Expand Down Expand Up @@ -225,7 +225,7 @@ function WalletScreen(): JSX.Element {
/>
</Flex>
{pendingBalance && (
<Text fontSize="sm" color="orange" mb={2} mr={10}>
<Text fontSize="sm" color="orange" mt={-1} mb={2} mr={10}>
Pending transactions...
<Tooltip
maxW="80vw"
Expand All @@ -234,15 +234,15 @@ function WalletScreen(): JSX.Element {
<Tbody>
<Tr>
<Td pl={0} pr={2} fontSize="xs">
Available balance:
Pending balance:
</Td>
<Td pl={2} pr={0}>
{balance.projected} Smidge
</Td>
</Tr>
<Tr>
<Td pl={0} pr={2} fontSize="xs">
Actual balance:
Current balance:
</Td>
<Td pl={2} pr={0}>
{balance.current} Smidge
Expand Down

0 comments on commit 32cced6

Please sign in to comment.