summaryrefslogtreecommitdiff
path: root/modules/dashboard/dash
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-31 22:01:54 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-31 22:01:54 +1000
commit6536b616348eff171d6f97cac6c533ff8ab8a459 (patch)
treedc77b534262219f32d31db3152bdcf609eaf852b /modules/dashboard/dash
parentdashboard: fix media player selector (diff)
downloadcaelestia-shell-6536b616348eff171d6f97cac6c533ff8ab8a459.tar.gz
caelestia-shell-6536b616348eff171d6f97cac6c533ff8ab8a459.tar.bz2
caelestia-shell-6536b616348eff171d6f97cac6c533ff8ab8a459.zip
dashboard: fix time spacing
Diffstat (limited to 'modules/dashboard/dash')
-rw-r--r--modules/dashboard/dash/DateTime.qml5
1 files changed, 3 insertions, 2 deletions
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]