diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-21 20:59:37 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-21 20:59:37 +0700 |
commit | e43a7ada88dff8cb3e3b16152fe5c78c6edfbe0a (patch) | |
tree | ae143a0bbbce55b6621446e4969553b4a88224fb | |
parent | 79af56259294efc4bd10d87db803053ee883fd18 (diff) |
fixed button text and remove unecessary lines
-rw-r--r-- | LoginForm.ui.qml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/LoginForm.ui.qml b/LoginForm.ui.qml index cea4a9d..afa73e8 100644 --- a/LoginForm.ui.qml +++ b/LoginForm.ui.qml @@ -47,9 +47,8 @@ Rectangle { anchors.bottom: emailButton.top contentItem: Text { + text: googleButton.text color: "#FFF" - font: control.font - text: "Continue with Google" font.pointSize: 14 font.family: "Google Sans" horizontalAlignment: Text.AlignHCenter @@ -64,7 +63,7 @@ Rectangle { Button { id: emailButton - text: qsTr("Button") + text: qsTr("Continue with E-Mail") x: 41 y: 516 height: 36 @@ -77,9 +76,8 @@ Rectangle { anchors.rightMargin: 16 contentItem: Text { + text: emailButton.text color: "#6d22e9" - font: control.font - text: "Continue with E-Mail" font.pointSize: 14 font.family: "Google Sans" horizontalAlignment: Text.AlignHCenter |