summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/kube/contents/ui/AccountsView.qml8
1 files changed, 7 insertions, 1 deletions
diff --git a/components/kube/contents/ui/AccountsView.qml b/components/kube/contents/ui/AccountsView.qml
index 86a413e7..b5d8d575 100644
--- a/components/kube/contents/ui/AccountsView.qml
+++ b/components/kube/contents/ui/AccountsView.qml
@@ -73,7 +73,13 @@ Rectangle {
73 color: Kube.Colors.viewBackgroundColor 73 color: Kube.Colors.viewBackgroundColor
74 74
75 Kube.Label { 75 Kube.Label {
76 anchors.centerIn: parent 76 anchors {
77 verticalCenter: parent.verticalCenter
78 left: parent.left
79 leftMargin: Kube.Units.largeSpacing
80 }
81 width: parent.width - Kube.Units.largeSpacing * 2
82
77 text: model.name 83 text: model.name
78 } 84 }
79 85