diff options
| author | selsta <selsta@sent.at> | 2019-01-22 15:10:27 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-01-22 15:10:53 +0100 |
| commit | 15b7fe159f508522e5782535538da63e587dc477 (patch) | |
| tree | 14f0d1fb14cd884c1d60c82cca782af4a6fc3ff0 | |
| parent | 9689fff957ba994b619a2a7fb881598a997f66c2 (diff) | |
| download | monzero-gui-15b7fe159f508522e5782535538da63e587dc477.tar.gz monzero-gui-15b7fe159f508522e5782535538da63e587dc477.tar.xz monzero-gui-15b7fe159f508522e5782535538da63e587dc477.zip | |
layout: fix top margin on various pages
| -rw-r--r-- | pages/Mining.qml | 1 | ||||
| -rw-r--r-- | pages/Sign.qml | 1 | ||||
| -rw-r--r-- | pages/TxKey.qml | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/pages/Mining.qml b/pages/Mining.qml index c53992c0..8a971273 100644 --- a/pages/Mining.qml +++ b/pages/Mining.qml @@ -40,6 +40,7 @@ Rectangle { ColumnLayout { id: mainLayout anchors.margins: (isMobile)? 17 * scaleRatio : 20 * scaleRatio + anchors.topMargin: 40 * scaleRatio anchors.left: parent.left anchors.top: parent.top anchors.right: parent.right diff --git a/pages/Sign.qml b/pages/Sign.qml index 04e88996..c90ef324 100644 --- a/pages/Sign.qml +++ b/pages/Sign.qml @@ -88,6 +88,7 @@ Rectangle { ColumnLayout { anchors.top: parent.top anchors.margins: (isMobile)? 17 * scaleRatio : 20 * scaleRatio + anchors.topMargin: 40 * scaleRatio anchors.left: parent.left anchors.right: parent.right diff --git a/pages/TxKey.qml b/pages/TxKey.qml index 04da3c65..360d4e3a 100644 --- a/pages/TxKey.qml +++ b/pages/TxKey.qml @@ -46,10 +46,10 @@ Rectangle { ColumnLayout { id: mainLayout anchors.margins: (isMobile)? 17 * scaleRatio : 20 * scaleRatio + anchors.topMargin: 40 * scaleRatio anchors.left: parent.left anchors.top: parent.top anchors.right: parent.right - anchors.bottom: parent.bottom spacing: 20 * scaleRatio // solo |
