Skip to content

Commit

Permalink
Wallet creation flow font weight and color tweaks
Browse files Browse the repository at this point in the history
The font weights for several titles was regular, but should be semi-bold.
Two divider lines were neutral 7, but should be the neutral 4 color.
  • Loading branch information
GBKS committed Aug 30, 2024
1 parent e7bea2d commit c753d16
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
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

0 comments on commit c753d16

Please sign in to comment.