aboutsummaryrefslogtreecommitdiff
path: root/components/DashboardTable.qml
diff options
context:
space:
mode:
authormarcin <z.krzysztoff7@gmail.com>2014-07-09 17:44:13 +0200
committermarcin <z.krzysztoff7@gmail.com>2014-07-09 17:44:13 +0200
commit692b8532d7e9a0565c46df9328ab303a293ba1bc (patch)
tree6ba8da0a78e3793c00e289fb066319059831449f /components/DashboardTable.qml
parent92c594ca8cefa8ba59dcad1e3f5df170d1880ba0 (diff)
downloadmonzero-gui-692b8532d7e9a0565c46df9328ab303a293ba1bc.tar.gz
monzero-gui-692b8532d7e9a0565c46df9328ab303a293ba1bc.tar.xz
monzero-gui-692b8532d7e9a0565c46df9328ab303a293ba1bc.zip
fixes
Diffstat (limited to 'components/DashboardTable.qml')
-rw-r--r--components/DashboardTable.qml31
1 files changed, 24 insertions, 7 deletions
diff --git a/components/DashboardTable.qml b/components/DashboardTable.qml
index 12c699a1..cbd1c8d0 100644
--- a/components/DashboardTable.qml
+++ b/components/DashboardTable.qml
@@ -37,7 +37,7 @@ ListView {
Text {
id: paymentIdText
- width: text.length ? 122 : 0
+ width: text.length ? 120 : 0
anchors.verticalCenter: dot.verticalCenter
font.family: "Arial"
font.bold: true
@@ -76,7 +76,7 @@ ListView {
Column {
anchors.top: parent.top
- width: 202
+ width: 215
Text {
anchors.left: parent.left
@@ -86,11 +86,26 @@ ListView {
text: qsTr("Date")
}
- Text {
- font.family: "Arial"
- font.pixelSize: 18
- color: "#000000"
- text: date
+ Row {
+ anchors.left: parent.left
+ anchors.right: parent.right
+ spacing: 33
+
+ Text {
+ font.family: "Arial"
+ font.pixelSize: 18
+ font.letterSpacing: -1
+ color: "#000000"
+ text: date
+ }
+
+ Text {
+ font.family: "Arial"
+ font.pixelSize: 18
+ font.letterSpacing: -1
+ color: "#000000"
+ text: time
+ }
}
}
@@ -109,6 +124,7 @@ ListView {
Text {
font.family: "Arial"
font.pixelSize: 18
+ font.letterSpacing: -1
color: "#000000"
text: amount
}
@@ -141,6 +157,7 @@ ListView {
anchors.bottom: parent.bottom
font.family: "Arial"
font.pixelSize: 18
+ font.letterSpacing: -1
color: out ? "#FF4F41" : "#36B05B"
text: balance
}