diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-02-01 01:06:31 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-02-01 01:06:31 -0600 |
| commit | 225abb31443d4bde8be9caaf04ac8a8bb830750b (patch) | |
| tree | 3b8aa3777d6995a23cec3661892c773be919f75b /pages | |
| parent | d2113686abb6136aa7d2122cb033367bbbe7a2a4 (diff) | |
| parent | 15b7fe159f508522e5782535538da63e587dc477 (diff) | |
| download | monzero-gui-225abb31443d4bde8be9caaf04ac8a8bb830750b.tar.gz monzero-gui-225abb31443d4bde8be9caaf04ac8a8bb830750b.tar.xz monzero-gui-225abb31443d4bde8be9caaf04ac8a8bb830750b.zip | |
Merge pull request #1913
15b7fe1 layout: fix top margin on various pages (selsta)
Diffstat (limited to '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 |
