fix(Wallet): prevent signing phrase from leaking out of modal
This commit is contained in:
parent
d7f2474597
commit
907c257eaf
|
@ -15,6 +15,8 @@ ModalPopup {
|
|||
|
||||
Column {
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
|
||||
StyledText {
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
|
@ -40,8 +42,7 @@ ModalPopup {
|
|||
Rectangle {
|
||||
color: Style.current.inputBackground
|
||||
height: 44
|
||||
width: signPhrasePopup.width
|
||||
anchors.left: signPhrasePopup.left
|
||||
width: parent.width
|
||||
StyledText {
|
||||
id: signingPhrase
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
|
@ -71,6 +72,7 @@ ModalPopup {
|
|||
text: qsTrId("three-words-description-2")
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
width: parent.width
|
||||
font.pixelSize: 13
|
||||
height: 18
|
||||
color: Style.current.danger
|
||||
|
|
Loading…
Reference in New Issue