From fb8a3f91004d76d0c7b5e8f46c07feeee4146a19 Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Thu, 28 Apr 2022 09:32:17 +0200 Subject: [PATCH] fix(@onboarding): missing seed phrase headline --- .../Onboarding/views/SeedPhraseInputView.qml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ui/app/AppLayouts/Onboarding/views/SeedPhraseInputView.qml b/ui/app/AppLayouts/Onboarding/views/SeedPhraseInputView.qml index 8dd0c0a589..9635b6946b 100644 --- a/ui/app/AppLayouts/Onboarding/views/SeedPhraseInputView.qml +++ b/ui/app/AppLayouts/Onboarding/views/SeedPhraseInputView.qml @@ -25,9 +25,21 @@ OnboardingBasePage { implicitWidth: 731 implicitHeight: 472 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 { id: switchTabBar + anchors.top: headlineText.bottom anchors.horizontalCenter: parent.horizontalCenter + anchors.topMargin: 24 StatusSwitchTabButton { text: qsTr("12 words") }