diff options
| author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-01-31 18:29:43 +0700 | 
|---|---|---|
| committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-01-31 18:29:43 +0700 | 
| commit | e3b77353b00ea9c5097f2ffee70f614bd0777a3d (patch) | |
| tree | 153af9d206a2fd9ac11c47c151daf21e67a2bcc3 | |
| parent | 76a3721c870e2073824bbd9935c9f5f5740b51a1 (diff) | |
fixing some margin, spacing, and sizes
| -rw-r--r-- | SignInFlickable.ui.qml | 28 | 
1 files changed, 17 insertions, 11 deletions
diff --git a/SignInFlickable.ui.qml b/SignInFlickable.ui.qml index 1235e74..2cbbbdf 100644 --- a/SignInFlickable.ui.qml +++ b/SignInFlickable.ui.qml @@ -9,23 +9,26 @@ GridLayout {  	property alias signInSignUp: signUp  	ColumnLayout { -		Layout.margins: 15 +		Layout.rightMargin: 16 +		Layout.leftMargin: 16 +		spacing: 16  		ColumnLayout {  			ColumnLayout {  				Label {  					text: qsTr("Email address *") -					font.pixelSize: 15 +					font.pixelSize: 16 +					font.family: "roboto"  				}  				Rectangle { -					height: 50 +					implicitHeight: 56  					color: "#f5f7f9"  					radius: 8  					border.width: 0  					Layout.fillWidth: true -					 +  					RowLayout {  						anchors.fill: parent  						Image { @@ -40,7 +43,8 @@ GridLayout {  						TextField {  							id: email  							placeholderText: qsTr("E-mail") -							font.pixelSize: 15 +							font.pixelSize: 16 +							font.family: "roboto"  							Layout.fillWidth: true  							Layout.fillHeight: true  							background: Rectangle { @@ -54,11 +58,12 @@ GridLayout {  			ColumnLayout {  				Label {  					text: qsTr("Password *") -					font.pixelSize: 15 +					font.pixelSize: 16 +					font.family: "roboto"  				}  				Rectangle { -					height: 50 +					implicitHeight: 56  					color: "#f5f7f9"  					radius: 8  					border.width: 0 @@ -75,7 +80,7 @@ GridLayout {  						TextField {  							id: password  							placeholderText: qsTr("Password") -							font.pixelSize: 15 +							font.pixelSize: 16  							Layout.fillWidth: true  							Layout.fillHeight: true  							background: Rectangle { @@ -89,7 +94,8 @@ GridLayout {  			Button {  				id: button  				text: qsTr("Login") -				font.pixelSize: 15 +				font.pixelSize: 16 +				implicitHeight: 40  				Layout.fillWidth: true  				contentItem: Text { @@ -113,12 +119,12 @@ GridLayout {  			Layout.alignment: Qt.AlignHCenter  			Label {  				text: qsTr("Don't have an account?") -				font.pixelSize: 15 +				font.pixelSize: 16  			}  			Text {  				id: signUp  				text: "<a href=\"sign-up.html\">Signup here</a>" -				font.pixelSize: 15 +				font.pixelSize: 16  				font.underline: false  				linkColor: Qt.rgba(.0235, .416, .788, 1.0)  			}  |