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:
parent
024843b8b8
commit
3bfbe104a4
|
@ -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()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue