diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-27 16:28:10 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-27 16:28:10 +0700 |
commit | 6b7c34f641015de08f8d302ca85c49b014358545 (patch) | |
tree | 98aadbfa963e7a49d7274121fbdf6fcf95fdff80 /pages | |
parent | a278a037912b28a2071785bdfdc58f3db453c9b4 (diff) |
rework on page title
Diffstat (limited to 'pages')
-rw-r--r-- | pages/EmailForm.ui.qml | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/pages/EmailForm.ui.qml b/pages/EmailForm.ui.qml index c07da3c..4aa692c 100644 --- a/pages/EmailForm.ui.qml +++ b/pages/EmailForm.ui.qml @@ -15,12 +15,21 @@ Rectangle { property alias laterButton: laterButton Label { - x: 124 - y: 177 - width: 116 - height: 17 - text: qsTr("E-mail") - anchors.horizontalCenter: parent.horizontalCenter + x: 16 + y: 398 + color: "#2b2626" + text: qsTr("Continue with E-Mail") + font.weight: Font.Bold + wrapMode: Text.WordWrap + anchors.bottom: buttonLayout.top + anchors.bottomMargin: 16 + anchors.left: parent.left + anchors.leftMargin: 16 + anchors.right: parent.right + anchors.rightMargin: 88 + + font.family: "Google Sans" + font.pointSize: 34 } RowLayout { |