Skip to content

Commit c753d16

Browse files
committed
Wallet creation flow font weight and color tweaks
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.
1 parent e7bea2d commit c753d16

File tree

6 files changed

+7
-2
lines changed

6 files changed

+7
-2
lines changed

src/qml/pages/wallet/AddWallet.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ StackView {
4646
Layout.leftMargin: 20
4747
Layout.rightMargin: 20
4848
header: qsTr("Add a wallet")
49+
headerBold: true
4950
description: qsTr("In this early stage of development, only wallet.dat files are supported.")
5051
}
5152

src/qml/pages/wallet/CreateBackup.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Page {
5555
Layout.leftMargin: 20
5656
Layout.rightMargin: 20
5757
header: qsTr("Back up your wallet")
58+
headerBold: true
5859
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.")
5960
}
6061

src/qml/pages/wallet/CreateConfirm.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Page {
5555
Layout.leftMargin: 20
5656
Layout.rightMargin: 20
5757
header: qsTr("Your wallet has been created")
58+
headerBold: true
5859
description: qsTr("It is good practice to make a small test transaction before you actively use this wallet for larger amounts.")
5960
}
6061

src/qml/pages/wallet/CreateIntro.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Page {
7272
Layout.leftMargin: 20
7373
Layout.rightMargin: 20
7474
Layout.fillWidth: true
75-
color: Theme.color.neutral7
75+
color: Theme.color.neutral4
7676
}
7777

7878
CoreText {
@@ -88,7 +88,7 @@ Page {
8888
Layout.leftMargin: 20
8989
Layout.rightMargin: 20
9090
Layout.fillWidth: true
91-
color: Theme.color.neutral7
91+
color: Theme.color.neutral4
9292
}
9393

9494
CoreText {

src/qml/pages/wallet/CreateName.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Page {
3636
Layout.leftMargin: 20
3737
Layout.rightMargin: 20
3838
header: qsTr("Choose a wallet name")
39+
headerBold: true
3940
}
4041

4142
CoreTextField {

src/qml/pages/wallet/CreatePassword.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Page {
4444
Layout.leftMargin: 20
4545
Layout.rightMargin: 20
4646
header: qsTr("Choose a password")
47+
headerBold: true
4748
description: qsTr("It is recommended to set a password to protect your wallet file from unwanted access from others.")
4849
}
4950

0 commit comments

Comments
 (0)