summaryrefslogtreecommitdiffstats
path: root/components/accounts/contents/ui/AccountWizardPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/accounts/contents/ui/AccountWizardPage.qml')
-rw-r--r--components/accounts/contents/ui/AccountWizardPage.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/accounts/contents/ui/AccountWizardPage.qml b/components/accounts/contents/ui/AccountWizardPage.qml
index 967bd4ab..f5f8c4ae 100644
--- a/components/accounts/contents/ui/AccountWizardPage.qml
+++ b/components/accounts/contents/ui/AccountWizardPage.qml
@@ -24,6 +24,7 @@ import QtQuick.Controls 2.0 as Controls2
24import org.kde.kirigami 1.0 as Kirigami 24import org.kde.kirigami 1.0 as Kirigami
25 25
26import org.kube.framework.accounts 1.0 as KubeAccounts 26import org.kube.framework.accounts 1.0 as KubeAccounts
27import org.kube.components.theme 1.0 as KubeTheme
27 28
28Item { 29Item {
29 id: root 30 id: root
@@ -53,7 +54,7 @@ Item {
53 Kirigami.Heading { 54 Kirigami.Heading {
54 id: heading 55 id: heading
55 text: loader.item.heading 56 text: loader.item.heading
56 color: Kirigami.Theme.highlightColor 57 color: KubeTheme.Colors.highlightColor
57 } 58 }
58 59
59 Kirigami.Label { 60 Kirigami.Label {
@@ -66,7 +67,7 @@ Item {
66 67
67 width: parent.width 68 width: parent.width
68 text: loader.item.subheadline 69 text: loader.item.subheadline
69 color: Kirigami.Theme.disabledTextColor 70 color: KubeTheme.Colors.disabledTextColor
70 wrapMode: Text.Wrap 71 wrapMode: Text.Wrap
71 } 72 }
72 73