QML UI: Settings: remove more margins

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-08-03 15:47:37 -07:00
parent c004e31dc2
commit 0476f6dc18
2 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@ Item {
ColumnLayout {
id: outerLayout
width: loginWindow.width
width: loginWindow.width - Kirigami.Units.gridUnit // to ensure the full input fields are visible
function goToNext() {
for (var i = 0; i < children.length; ++i)

View file

@ -11,16 +11,16 @@ Kirigami.ScrollablePage {
objectName: "Settings"
id: settingsPage
title: qsTr("Settings")
anchors.margins: Kirigami.Units.gridUnit / 2
property real gridWidth: settingsPage.width - 2 * Kirigami.Units.gridUnit
property real gridWidth: settingsPage.width - Kirigami.Units.gridUnit
ColumnLayout {
width: parent.width - Kirigami.Units.gridUnit
width: gridWidth
CloudCredentials {
id: cloudCredentials
Layout.fillWidth: true
Layout.rightMargin: Kirigami.Units.smallSpacing
Layout.topMargin: 0
Layout.topMargin: - Kirigami.Units.gridUnit
property int headingLevel: 4
}
Rectangle {