diff options
Diffstat (limited to 'modules/bar/Clock.qml')
| -rw-r--r-- | modules/bar/Clock.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/bar/Clock.qml b/modules/bar/Clock.qml index 99bae22..0daf0c8 100644 --- a/modules/bar/Clock.qml +++ b/modules/bar/Clock.qml @@ -9,11 +9,13 @@ BoxLayout { readonly property color colour: Appearance.colours.peach + padding: [Appearance.padding.smaller, 0] + MaterialIcon { text: "calendar_month" color: root.colour - Layout.alignment: Qt.AlignCenter + Layout.alignment: Layout.Center } Label { @@ -23,6 +25,6 @@ BoxLayout { font.family: Appearance.font.family.mono color: root.colour - Layout.alignment: Qt.AlignCenter + Layout.alignment: Layout.Center } } |