diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2026-01-03 18:45:25 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2026-01-03 18:45:25 +1100 |
| commit | 88d70a7f22f75a0d416d6e5b8626355e3a4c8ba9 (patch) | |
| tree | b4d7781d0b17c60f74af8185e809f0f141a6478d | |
| parent | dashboard: fix index not initialised (diff) | |
| download | caelestia-shell-88d70a7f22f75a0d416d6e5b8626355e3a4c8ba9.tar.gz caelestia-shell-88d70a7f22f75a0d416d6e5b8626355e3a4c8ba9.tar.bz2 caelestia-shell-88d70a7f22f75a0d416d6e5b8626355e3a4c8ba9.zip | |
dash: more expressive shapes
Diffstat (limited to '')
| -rw-r--r-- | modules/dashboard/Dash.qml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/modules/dashboard/Dash.qml b/modules/dashboard/Dash.qml index 81cb1fb..71e224f 100644 --- a/modules/dashboard/Dash.qml +++ b/modules/dashboard/Dash.qml @@ -22,6 +22,8 @@ GridLayout { Layout.preferredWidth: user.implicitWidth Layout.preferredHeight: user.implicitHeight + radius: Appearance.rounding.large + User { id: user @@ -37,6 +39,8 @@ GridLayout { Layout.preferredWidth: Config.dashboard.sizes.weatherWidth Layout.fillHeight: true + radius: Appearance.rounding.large * 1.5 + Weather {} } @@ -45,6 +49,8 @@ GridLayout { Layout.preferredWidth: dateTime.implicitWidth Layout.fillHeight: true + radius: Appearance.rounding.normal + DateTime { id: dateTime } @@ -57,6 +63,8 @@ GridLayout { Layout.fillWidth: true Layout.preferredHeight: calendar.implicitHeight + radius: Appearance.rounding.large + Calendar { id: calendar @@ -70,6 +78,8 @@ GridLayout { Layout.preferredWidth: resources.implicitWidth Layout.fillHeight: true + radius: Appearance.rounding.normal + Resources { id: resources } @@ -82,13 +92,14 @@ GridLayout { Layout.preferredWidth: media.implicitWidth Layout.fillHeight: true + radius: Appearance.rounding.large * 2 + Media { id: media } } component Rect: StyledRect { - radius: Appearance.rounding.small color: Colours.tPalette.m3surfaceContainer } } |