feat(@wallet): re-org wallet footer

fixes #8600
This commit is contained in:
Anthony Laibe 2022-12-13 14:42:52 +01:00 committed by Anthony Laibe
parent 4b972acdd9
commit a7884cf04f
2 changed files with 10 additions and 10 deletions

View File

@ -46,15 +46,6 @@ Rectangle {
}
}
StatusFlatButton {
id: buySellBtn
icon.name: "token"
text: qsTr("Buy / Sell")
onClicked: function () {
Global.openPopup(buySellModal);
}
}
StatusFlatButton {
id: bridgeBtn
icon.name: "bridge"
@ -64,6 +55,15 @@ Rectangle {
sendModal.open()
}
}
StatusFlatButton {
id: buySellBtn
icon.name: "token"
text: qsTr("Buy")
onClicked: function () {
Global.openPopup(buySellModal);
}
}
}
Component {

View File

@ -16,7 +16,7 @@ StatusModal {
id: cryptoServicesPopupRoot
height: 400
header.title: qsTr("Buy / Sell crypto")
header.title: qsTr("Buy crypto")
anchors.centerIn: parent
Loader {