Skip to content

Commit

Permalink
Merge pull request #4989 from EdgeApp/paul/tweakGradient
Browse files Browse the repository at this point in the history
Decrease opacity in Wallet list row for better visibility
  • Loading branch information
paullinator authored Apr 18, 2024
2 parents 62a5fef + fb25873 commit 0b67188
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- changed: Upgrade to React Native v0.73.6
- changed: "Split" wallet menu options consolidated into one
- changed: Paybis implementation to use SHA signatures and oneTimeToken
- changed: Increase opacity in wallet list gradient for better visibility
- fixed: Possible to see receive address for a wallet requiring activation when creating the wallet from search
- fixed: Glitch on transaction list scene when starting search
- fixed: Properly set default buy/sell fiat amount for non-USD wallets
Expand Down
2 changes: 1 addition & 1 deletion src/components/themed/WalletListCurrencyRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const WalletListCurrencyRowComponent = (props: Props) => {
// State
//
const iconColor = useIconColor({ pluginId, tokenId })
const primaryColor = iconColor != null ? `${iconColor}88` : 'rgba(0, 0, 0, 0)'
const primaryColor = iconColor != null ? `${iconColor}30` : 'rgba(0, 0, 0, 0)'

//
// Handlers
Expand Down

0 comments on commit 0b67188

Please sign in to comment.