diff options
Diffstat (limited to 'modules/lock')
| -rw-r--r-- | modules/lock/Center.qml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/modules/lock/Center.qml b/modules/lock/Center.qml index f760ef8..e3bf147 100644 --- a/modules/lock/Center.qml +++ b/modules/lock/Center.qml @@ -23,7 +23,6 @@ ColumnLayout { RowLayout { Layout.alignment: Qt.AlignHCenter - Layout.bottomMargin: Appearance.spacing.large spacing: Appearance.spacing.small StyledText { @@ -67,7 +66,19 @@ ColumnLayout { } } + StyledText { + Layout.alignment: Qt.AlignHCenter + Layout.topMargin: -Appearance.padding.large * 2 + + text: Time.format("dddd, d MMMM yyyy") + color: Colours.palette.m3tertiary + font.pointSize: Appearance.font.size.extraLarge + font.family: Appearance.font.family.mono + font.bold: true + } + StyledClippingRect { + Layout.topMargin: Appearance.spacing.large * 2 Layout.alignment: Qt.AlignHCenter implicitWidth: Config.lock.sizes.centerWidth / 2 |