summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-08-21 18:21:08 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-08-21 18:21:08 +0700
commit2c173a7e9576094af2f478ad3a5ad2a358933ad0 (patch)
treefb0dd71b696c81f1a136e4cc08ec168c0bfbf978
parentbc4e192ed3d049c6639ac31ca84eac4fedd372d0 (diff)
customize Label
-rw-r--r--LoginForm.ui.qml16
1 files changed, 9 insertions, 7 deletions
diff --git a/LoginForm.ui.qml b/LoginForm.ui.qml
index 2171182..198429d 100644
--- a/LoginForm.ui.qml
+++ b/LoginForm.ui.qml
@@ -7,17 +7,19 @@ Rectangle {
width: 360
height: 640
color: "#ffffff"
- property alias emailButton: emailButton
property alias googleButton: googleButton
- border.width: 0
+ property alias emailButton: emailButton
Label {
- x: 124
- y: 158
- width: 74
- height: 28
text: qsTr("kelakon")
- font.pointSize: 16
+ font.family: "Google Sans"
+ font.pointSize: 24
+ color: "#000000"
+
+ verticalAlignment: Text.AlignVCenter
+ horizontalAlignment: Text.AlignHCenter
+ anchors.top: parent.top
+ anchors.topMargin: 16
anchors.horizontalCenterOffset: 0
anchors.horizontalCenter: parent.horizontalCenter
}