aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/CloudCredentials.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-08-03 15:31:23 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-08-03 15:31:23 -0700
commitc004e31dc27c246e7e0faf33aa3ebc486bb6b038 (patch)
treeb7ac958b5111b91a35af3514868d91116f6fa092 /mobile-widgets/qml/CloudCredentials.qml
parentc043366b8f0c9e3a2bc279d72d0cd8d263603358 (diff)
downloadsubsurface-c004e31dc27c246e7e0faf33aa3ebc486bb6b038.tar.gz
QML UI: CloudCredentials: better use of space
No idea why this was restricted to be so narrow. Also, making the font of the label smaller and lighter seems visually more pleasing. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/CloudCredentials.qml')
-rw-r--r--mobile-widgets/qml/CloudCredentials.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml
index 6c9e2f883..c9a931981 100644
--- a/mobile-widgets/qml/CloudCredentials.qml
+++ b/mobile-widgets/qml/CloudCredentials.qml
@@ -23,7 +23,7 @@ Item {
ColumnLayout {
id: outerLayout
- width: loginWindow.width - loginWindow.leftPadding - loginWindow.rightPadding - 2 * Kirigami.Units.gridUnit
+ width: loginWindow.width
function goToNext() {
for (var i = 0; i < children.length; ++i)
@@ -53,6 +53,8 @@ Item {
Kirigami.Label {
text: qsTr("Email")
+ font.pointSize: subsurfaceTheme.smallPointSize
+ color: subsurfaceTheme.secondaryTextColor
}
TextField {
@@ -68,6 +70,8 @@ Item {
Kirigami.Label {
text: qsTr("Password")
+ font.pointSize: subsurfaceTheme.smallPointSize
+ color: subsurfaceTheme.secondaryTextColor
}
TextField {