diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-22 23:32:36 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-22 23:32:36 +1000 |
| commit | 38b9b8659541de53ae6b8e5fd0d6630621fb65cd (patch) | |
| tree | 3b1fa09693e9806a6d18ed27e4e8289c2ef78d95 /modules | |
| parent | internal: fix choose wallpaper button (diff) | |
| download | caelestia-shell-38b9b8659541de53ae6b8e5fd0d6630621fb65cd.tar.gz caelestia-shell-38b9b8659541de53ae6b8e5fd0d6630621fb65cd.tar.bz2 caelestia-shell-38b9b8659541de53ae6b8e5fd0d6630621fb65cd.zip | |
config: add toasts for events
Loaded, load parse error, load failed, save failed
Also increase toast icon size
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/utilities/toasts/ToastItem.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/utilities/toasts/ToastItem.qml b/modules/utilities/toasts/ToastItem.qml index 481b831..f475500 100644 --- a/modules/utilities/toasts/ToastItem.qml +++ b/modules/utilities/toasts/ToastItem.qml @@ -68,7 +68,7 @@ StyledRect { } implicitWidth: implicitHeight - implicitHeight: icon.implicitHeight + Appearance.padding.normal * 2 + implicitHeight: icon.implicitHeight + Appearance.padding.smaller * 2 MaterialIcon { id: icon @@ -84,7 +84,7 @@ StyledRect { return Colours.palette.m3onError; return Colours.palette.m3onSurfaceVariant; } - font.pointSize: Appearance.font.size.large + font.pointSize: Math.round(Appearance.font.size.large * 1.2) } } |