mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
QML UI: tighten credential input screen
This way even on smaller screens both email and password should fit above the keyboard which makes data entry so much easier. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
a4977f2a90
commit
4670373731
1 changed files with 3 additions and 1 deletions
|
@ -21,6 +21,7 @@ ColumnLayout {
|
||||||
id: explanationText
|
id: explanationText
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.margins: MobileComponents.Units.gridUnit
|
Layout.margins: MobileComponents.Units.gridUnit
|
||||||
|
Layout.topMargin: 0
|
||||||
text: "In order to use Subsurface-mobile you need to have a Subsurface cloud storage account " +
|
text: "In order to use Subsurface-mobile you need to have a Subsurface cloud storage account " +
|
||||||
"(which can be created with the Subsurface desktop application)."
|
"(which can be created with the Subsurface desktop application)."
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
|
@ -29,6 +30,7 @@ ColumnLayout {
|
||||||
id: messageArea
|
id: messageArea
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.margins: MobileComponents.Units.gridUnit
|
Layout.margins: MobileComponents.Units.gridUnit
|
||||||
|
Layout.topMargin: 0
|
||||||
text: manager.startPageText
|
text: manager.startPageText
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
}
|
}
|
||||||
|
@ -36,7 +38,7 @@ ColumnLayout {
|
||||||
id: cloudCredentials
|
id: cloudCredentials
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.margins: MobileComponents.Units.gridUnit
|
Layout.margins: MobileComponents.Units.gridUnit
|
||||||
Layout.topMargin: MobileComponents.Units.gridUnit * 2
|
Layout.topMargin: 0
|
||||||
property int headingLevel: 3
|
property int headingLevel: 3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue