fix(BackupSeedModal): fix the confirmation/final page UI

Follow up to PR #6467, just a few minor UI tweaks to align it to the
intended design
This commit is contained in:
Lukáš Tinkl 2022-07-15 15:25:25 +02:00 committed by Lukáš Tinkl
parent b5d82ed4b4
commit 1b576a64cf

View File

@ -9,16 +9,24 @@ import shared.panels 1.0
BackupSeedStepBase {
id: root
property bool seedStored: storeCheck.checked
readonly property alias seedStored: storeCheck.checked
titleText: qsTr("Complete back up")
ColumnLayout {
Layout.fillWidth: true
Layout.leftMargin: 44
Layout.rightMargin: 44
Layout.topMargin: Style.current.bigPadding
spacing: Style.current.padding
StyledText {
id: txtTitle
horizontalAlignment: Text.AlignHCenter
wrapMode: Text.WordWrap
font.bold: true
font.pixelSize: 17
lineHeight: 1.2
text: qsTr("Store Your Phrase Offline and Complete Your Back Up")
Layout.fillWidth: true
}
@ -28,6 +36,7 @@ BackupSeedStepBase {
horizontalAlignment: Text.AlignHCenter
wrapMode: Text.WordWrap
font.pixelSize: Style.current.primaryTextFontSize
lineHeight: 1.2
text: qsTr("By completing this process, you will remove your seed phrase from this applications storage. This makes your funds more secure.")
Layout.fillWidth: true
}
@ -37,13 +46,18 @@ BackupSeedStepBase {
horizontalAlignment: Text.AlignHCenter
wrapMode: Text.WordWrap
font.pixelSize: Style.current.primaryTextFontSize
lineHeight: 1.2
text: qsTr("You will remain logged in, and your seed phrase will be entirely in your hands.")
Layout.fillWidth: true
}
StatusCheckBox {
id: storeCheck
text: qsTr("I aknowledge that Status will not be able to show me my seed phrase again.")
spacing: Style.current.padding
font.pixelSize: Style.current.primaryTextFontSize
text: qsTr("I acknowledge that Status will not be able to show me my seed phrase again.")
Layout.fillWidth: true
Layout.topMargin: Style.current.bigPadding
}
}
}