diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-18 13:05:34 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-18 13:05:34 +0800 |
commit | 1ac6df1b4a02347919baaacde86326967bd9a9fc (patch) | |
tree | 458e392497256076cd32ccab2eff87b39a252e2e | |
parent | b8e1ebcecbe7b1cdd6059e88bd8f47d0fca88077 (diff) |
Set SignIn pixel sizes
-rw-r--r-- | SignInFlickable.ui.qml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/SignInFlickable.ui.qml b/SignInFlickable.ui.qml index e87d2aa..e52415d 100644 --- a/SignInFlickable.ui.qml +++ b/SignInFlickable.ui.qml @@ -16,6 +16,7 @@ GridLayout { ColumnLayout { Label { text: qsTr("Email address *") + font.pixelSize: 15 } RowLayout { Image { @@ -25,6 +26,7 @@ GridLayout { TextField { id: email placeholderText: qsTr("E-mail") + font.pixelSize: 15 Layout.fillWidth: true } } @@ -33,6 +35,7 @@ GridLayout { ColumnLayout { Label { text: qsTr("Password *") + font.pixelSize: 15 } RowLayout { Image { @@ -45,6 +48,7 @@ GridLayout { TextField { id: password placeholderText: qsTr("password") + font.pixelSize: 15 Layout.fillWidth: true } } @@ -53,6 +57,7 @@ GridLayout { Button { id: button text: qsTr("Login") + font.pixelSize: 15 Layout.fillWidth: true } } @@ -61,12 +66,14 @@ GridLayout { Layout.alignment: Qt.AlignHCenter Label { text: qsTr("Don't have an account?") + font.pixelSize: 15 } Text { id: signUp text: "<a href=\"sign-up.html\">Signup here</a>" - linkColor: Qt.rgba(.0235, .416, .788, 1.0) + font.pixelSize: 15 font.underline: false + linkColor: Qt.rgba(.0235, .416, .788, 1.0) } } } |