Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wallet creation flow font weight and color tweaks #420

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/qml/pages/wallet/AddWallet.qml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ StackView {
Layout.leftMargin: 20
Layout.rightMargin: 20
header: qsTr("Add a wallet")
headerBold: true
description: qsTr("In this early stage of development, only wallet.dat files are supported.")
}

Expand Down
1 change: 1 addition & 0 deletions src/qml/pages/wallet/CreateBackup.qml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Page {
Layout.leftMargin: 20
Layout.rightMargin: 20
header: qsTr("Back up your wallet")
headerBold: true
description: qsTr("Your wallet is a file stored on your hard disk.\nTo prevent accidental loss, it is recommended you keep a copy of your wallet file in a secure place, like a dedicated USB Drive.")
}

Expand Down
1 change: 1 addition & 0 deletions src/qml/pages/wallet/CreateConfirm.qml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Page {
Layout.leftMargin: 20
Layout.rightMargin: 20
header: qsTr("Your wallet has been created")
headerBold: true
description: qsTr("It is good practice to make a small test transaction before you actively use this wallet for larger amounts.")
}

Expand Down
4 changes: 2 additions & 2 deletions src/qml/pages/wallet/CreateIntro.qml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Page {
Layout.leftMargin: 20
Layout.rightMargin: 20
Layout.fillWidth: true
color: Theme.color.neutral7
color: Theme.color.neutral4
}

CoreText {
Expand All @@ -88,7 +88,7 @@ Page {
Layout.leftMargin: 20
Layout.rightMargin: 20
Layout.fillWidth: true
color: Theme.color.neutral7
color: Theme.color.neutral4
}

CoreText {
Expand Down
1 change: 1 addition & 0 deletions src/qml/pages/wallet/CreateName.qml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Page {
Layout.leftMargin: 20
Layout.rightMargin: 20
header: qsTr("Choose a wallet name")
headerBold: true
}

CoreTextField {
Expand Down
1 change: 1 addition & 0 deletions src/qml/pages/wallet/CreatePassword.qml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Page {
Layout.leftMargin: 20
Layout.rightMargin: 20
header: qsTr("Choose a password")
headerBold: true
description: qsTr("It is recommended to set a password to protect your wallet file from unwanted access from others.")
}

Expand Down
Loading