summaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-12-22 20:13:25 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-12-23 09:44:39 -0800
commitc62b8f3a75189394b4a5567c33055029de1c333b (patch)
treee48b118e9055875de3552699dc5ada95bed85c19 /mobile-widgets
parent73aea74161293c1df5fcdbe377716d3c21878f1c (diff)
downloadsubsurface-c62b8f3a75189394b4a5567c33055029de1c333b.tar.gz
mobile/UI: fix theming of About page
Can't believe I missed that one. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/qml/About.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/mobile-widgets/qml/About.qml b/mobile-widgets/qml/About.qml
index 151e52364..3b6357369 100644
--- a/mobile-widgets/qml/About.qml
+++ b/mobile-widgets/qml/About.qml
@@ -18,6 +18,7 @@ Kirigami.ScrollablePage {
Kirigami.Heading {
text: qsTr("About Subsurface-mobile")
+ color: subsurfaceTheme.textColor
Layout.topMargin: Kirigami.Units.gridUnit
Layout.alignment: Qt.AlignHCenter
Layout.maximumWidth: pageWidth
@@ -37,6 +38,7 @@ Kirigami.ScrollablePage {
text: qsTr("A mobile version of the free Subsurface divelog software.\n") +
qsTr("View your dive logs while on the go.")
level: 4
+ color: subsurfaceTheme.textColor
Layout.alignment: Qt.AlignHCenter
Layout.topMargin: Kirigami.Units.largeSpacing * 3
Layout.maximumWidth: pageWidth
@@ -48,6 +50,7 @@ Kirigami.ScrollablePage {
Kirigami.Heading {
text: qsTr("Version: %1\n\n© Subsurface developer team\n2011-2020").arg(manager.getVersion())
level: 5
+ color: subsurfaceTheme.textColor
font.pointSize: subsurfaceTheme.smallPointSize + 1
Layout.alignment: Qt.AlignHCenter
Layout.topMargin: Kirigami.Units.largeSpacing