From 6536b616348eff171d6f97cac6c533ff8ab8a459 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:01:54 +1000 Subject: dashboard: fix time spacing --- modules/dashboard/dash/DateTime.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules/dashboard') diff --git a/modules/dashboard/dash/DateTime.qml b/modules/dashboard/dash/DateTime.qml index 57fac83..1583959 100644 --- a/modules/dashboard/dash/DateTime.qml +++ b/modules/dashboard/dash/DateTime.qml @@ -20,6 +20,7 @@ Item { spacing: 0 StyledText { + Layout.bottomMargin: -(font.pointSize * 0.4) Layout.alignment: Qt.AlignHCenter text: root.timeComponents[0] color: Colours.palette.m3secondary @@ -28,7 +29,7 @@ Item { } StyledText { - Layout.topMargin: -(font.pointSize * 0.2) + Layout.topMargin: -(font.pointSize * 0.1) Layout.alignment: Qt.AlignHCenter text: "•••" color: Colours.palette.m3primary @@ -36,6 +37,7 @@ Item { } StyledText { + Layout.topMargin: -(font.pointSize * 0.4) Layout.alignment: Qt.AlignHCenter text: root.timeComponents[1] color: Colours.palette.m3secondary @@ -45,7 +47,6 @@ Item { StyledText { visible: Config.services.useTwelveHourClock - Layout.topMargin: Appearance.spacing.small Layout.alignment: Qt.AlignHCenter text: root.timeComponents[2] -- cgit v1.2.3-freya