fix(@wallet): Fix dark mode background for wallet account view
fixes #5143
This commit is contained in:
parent
bf1c809f15
commit
d05bd6ce08
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue