Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Decrease opacity in Wallet list row for better visibility #4989

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading