aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-12-20 22:51:53 +0200
committerRiccardo Spagni <ric@spagni.net>2016-12-20 22:51:53 +0200
commit7f950cf13697b97ca99956a4528555d7a051baa8 (patch)
treebab4f3a02da8910062b3890f22fec9f014bdcee1
parent6cd631f0e787f712d13388f1ae4d22eb7506fe23 (diff)
parent14e536a9347473896ba2916c7a4108d8952d1c50 (diff)
downloadmonzero-gui-7f950cf13697b97ca99956a4528555d7a051baa8.tar.gz
monzero-gui-7f950cf13697b97ca99956a4528555d7a051baa8.tar.xz
monzero-gui-7f950cf13697b97ca99956a4528555d7a051baa8.zip
Merge pull request #297
14e536a Don't waste too much vertical space on the left menu (moneromooo.monero)
-rw-r--r--LeftPanel.qml6
-rw-r--r--components/MenuButton.qml2
2 files changed, 4 insertions, 4 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml
index cd87de7e..6f1ffc94 100644
--- a/LeftPanel.qml
+++ b/LeftPanel.qml
@@ -73,7 +73,7 @@ Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
- anchors.topMargin: 48
+ anchors.topMargin: 40
height: logo.implicitHeight
Image {
@@ -105,8 +105,8 @@ Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.top: logoItem.bottom
- anchors.topMargin: 40
- spacing: 6
+ anchors.topMargin: 30
+ spacing: 5
Label {
text: qsTr("Balance") + translationManager.emptyString
diff --git a/components/MenuButton.qml b/components/MenuButton.qml
index 50238bd8..1d0b00e1 100644
--- a/components/MenuButton.qml
+++ b/components/MenuButton.qml
@@ -36,7 +36,7 @@ Rectangle {
property alias symbol: symbolText.text
signal clicked()
- height: (appWindow.height >= 800) ? 64 : 60
+ height: (appWindow.height >= 800) ? 64 : 56
color: checked ? "#FFFFFF" : "#1C1C1C"
Item {