summaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/StartPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qt-mobile/qml/StartPage.qml')
-rw-r--r--qt-mobile/qml/StartPage.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-mobile/qml/StartPage.qml b/qt-mobile/qml/StartPage.qml
index 64b236ade..2d70cfcb3 100644
--- a/qt-mobile/qml/StartPage.qml
+++ b/qt-mobile/qml/StartPage.qml
@@ -9,8 +9,6 @@ ColumnLayout {
id: startpage
width: subsurfaceTheme.columnWidth
- property int buttonWidth: width * 0.9
-
function saveCredentials() { cloudCredentials.saveCredentials() }
Kirigami.Heading {
@@ -21,6 +19,7 @@ ColumnLayout {
id: explanationText
Layout.fillWidth: true
Layout.margins: Kirigami.Units.gridUnit
+ Layout.topMargin: 0
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)."
wrapMode: Text.WordWrap
@@ -29,6 +28,7 @@ ColumnLayout {
id: messageArea
Layout.fillWidth: true
Layout.margins: Kirigami.Units.gridUnit
+ Layout.topMargin: 0
text: manager.startPageText
wrapMode: Text.WordWrap
}
@@ -36,7 +36,7 @@ ColumnLayout {
id: cloudCredentials
Layout.fillWidth: true
Layout.margins: Kirigami.Units.gridUnit
- Layout.topMargin: Kirigami.Units.gridUnit * 2
+ Layout.topMargin: 0
property int headingLevel: 3
}
}