diff options
-rw-r--r-- | pages/CreateProfileForm.ui.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pages/CreateProfileForm.ui.qml b/pages/CreateProfileForm.ui.qml index 47fb11d..2480a17 100644 --- a/pages/CreateProfileForm.ui.qml +++ b/pages/CreateProfileForm.ui.qml @@ -20,6 +20,7 @@ Rectangle { anchors.rightMargin: 0 anchors.left: parent.left anchors.leftMargin: 0 + background: rectangle RowLayout { anchors.fill: parent @@ -29,12 +30,13 @@ Rectangle { id: backButton icon.name: "back-icon" icon.source: "/assets/arrow-back-24px.svg" - icon.color: "#FFFFFF" + icon.color: "#000000" } Label { id: title text: qsTr("Create Profile") wrapMode: Text.WordWrap + color: "#000" font.family: "Google Sans" font.pointSize: 20 elide: Label.ElideRight |