diff options
-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 { |