fix(@wallet): Fix dark mode background for wallet account view

fixes #5143
This commit is contained in:
Anthony Laibe 2022-03-24 10:10:34 +01:00 committed by Anthony Laibe
parent bf1c809f15
commit d05bd6ce08
1 changed files with 5 additions and 0 deletions

View File

@ -107,6 +107,7 @@ Item {
radius: Style.current.radius radius: Style.current.radius
width: typeText.width + Style.current.xlPadding width: typeText.width + Style.current.xlPadding
height: parent.height height: parent.height
color: Style.current.transparent
StatusBaseText { StatusBaseText {
id: labelType id: labelType
anchors.top: parent.top anchors.top: parent.top
@ -146,6 +147,8 @@ Item {
radius: Style.current.radius radius: Style.current.radius
width: storageText.width + Style.current.xlPadding width: storageText.width + Style.current.xlPadding
height: parent.height height: parent.height
color: Style.current.transparent
StatusBaseText { StatusBaseText {
id: labelStorage id: labelStorage
anchors.top: parent.top anchors.top: parent.top
@ -180,6 +183,8 @@ Item {
radius: Style.current.radius radius: Style.current.radius
width: Math.max(path.width, labelPath.width) + Style.current.xlPadding width: Math.max(path.width, labelPath.width) + Style.current.xlPadding
height: 50 height: 50
color: Style.current.transparent
StatusBaseText { StatusBaseText {
id: labelPath id: labelPath
anchors.top: parent.top anchors.top: parent.top