fix(@onboarding): missing seed phrase headline

This commit is contained in:
Anthony Laibe 2022-04-28 09:32:17 +02:00 committed by Anthony Laibe
parent b72f53e62c
commit fb8a3f9100
1 changed files with 12 additions and 0 deletions

View File

@ -25,9 +25,21 @@ OnboardingBasePage {
implicitWidth: 731 implicitWidth: 731
implicitHeight: 472 implicitHeight: 472
anchors.centerIn: parent anchors.centerIn: parent
StatusBaseText {
id: headlineText
font.pixelSize: 22
font.weight: Font.Bold
color: Theme.palette.directColor1
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Enter seed phrase")
}
StatusSwitchTabBar { StatusSwitchTabBar {
id: switchTabBar id: switchTabBar
anchors.top: headlineText.bottom
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: 24
StatusSwitchTabButton { StatusSwitchTabButton {
text: qsTr("12 words") text: qsTr("12 words")
} }