fix(Wallet/LeftTabView): style fixes

Fixes #6489

- fixup list items background according to design
- fix Add account button (add icon, fix font size)
This commit is contained in:
Lukáš Tinkl 2022-07-18 14:08:48 +02:00 committed by Lukáš Tinkl
parent 024843b8b8
commit 3bfbe104a4
1 changed files with 4 additions and 0 deletions

View File

@ -107,6 +107,7 @@ Rectangle {
icon.isLetterIdenticon: !!model.emoji ? true : false
icon.background.color: Theme.palette.primaryColor3
statusListItemTitle.font.weight: Font.Medium
color: sensor.containsMouse || highlighted ? Theme.palette.baseColor3 : "transparent"
onClicked: {
changeSelectedAccount(index)
showSavedAddresses(false)
@ -121,6 +122,9 @@ Rectangle {
anchors.top: parent.top
anchors.horizontalCenter: parent.horizontalCenter
anchors.margins: Style.current.bigPadding
font.pixelSize: 15
font.weight: Font.Medium
icon.name: "add"
text: qsTr("Add account")
onClicked: addAccountModal.open()
}