fix(@desktop/wallet): Fix for Wallet icon background color seems off in wallet settings under dark mode

fixes #6059
This commit is contained in:
Khushboo Mehta 2022-07-12 15:55:38 +02:00 committed by Khushboo-dev-cpp
parent 1a2eb84ace
commit 864bdd63fa
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ StatusListItem {
icon.name: !account.emoji ? "filled-account": ""
icon.letterSize: 14
icon.isLetterIdenticon: !!account.emoji
icon.background.color: Theme.palette.indirectColor1
icon.background.color: Theme.palette.primaryColor3
width: parent.width
components: !showShevronIcon ? [] : [ shevronIcon ]

View File

@ -112,7 +112,7 @@ Rectangle {
icon.name: !model.emoji ? "filled-account": ""
icon.letterSize: 14
icon.isLetterIdenticon: !!model.emoji ? true : false
icon.background.color: Theme.palette.indirectColor1
icon.background.color: Theme.palette.primaryColor3
onClicked: {
changeSelectedAccount(index)
showSavedAddresses(false)