mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-03 10:14:04 +00:00
chore(wallet): Update token selector misalignment (#17133)
This commit is contained in:
parent
55e96bbd05
commit
ea33f151db
@ -3,6 +3,7 @@ import QtQuick.Controls 2.15
|
||||
|
||||
import StatusQ.Controls 0.1
|
||||
import StatusQ.Core.Utils 0.1
|
||||
import StatusQ.Core.Theme 0.1
|
||||
|
||||
import AppLayouts.Wallet.panels 1.0
|
||||
|
||||
@ -67,7 +68,7 @@ Control {
|
||||
width: 448
|
||||
|
||||
horizontalPadding: 0
|
||||
bottomPadding: 0
|
||||
bottomPadding: Theme.halfPadding / 2
|
||||
|
||||
onClosed: tokenSelectorPanel.clear()
|
||||
|
||||
|
@ -3,6 +3,7 @@ import QtQuick.Controls 2.15
|
||||
import QtQuick.Layouts 1.15
|
||||
|
||||
import StatusQ.Controls 0.1
|
||||
import StatusQ.Core.Theme 0.1
|
||||
|
||||
/**
|
||||
Two-tabs panel holding searchable lists of assets (single level) and
|
||||
@ -62,7 +63,8 @@ Control {
|
||||
objectName: "assetsTab"
|
||||
|
||||
text: qsTr("Assets")
|
||||
width: implicitWidth
|
||||
width: visible ? implicitWidth : 0
|
||||
leftPadding: visible ? Theme.padding : 0
|
||||
|
||||
visible: !!root.assetsModel
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user