diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-08 20:58:18 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-08 20:58:18 +1000 |
| commit | a1ed341639fd73ce916eecfce480b14cd8660999 (patch) | |
| tree | b8d12c8f03057246e17a360f69bd83a61465e9bd /modules/notifications/Content.qml | |
| parent | refactor: split drawers (diff) | |
| download | caelestia-shell-a1ed341639fd73ce916eecfce480b14cd8660999.tar.gz caelestia-shell-a1ed341639fd73ce916eecfce480b14cd8660999.tar.bz2 caelestia-shell-a1ed341639fd73ce916eecfce480b14cd8660999.zip | |
feat: notification popup area
Diffstat (limited to 'modules/notifications/Content.qml')
| -rw-r--r-- | modules/notifications/Content.qml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/notifications/Content.qml b/modules/notifications/Content.qml new file mode 100644 index 0000000..86cef8b --- /dev/null +++ b/modules/notifications/Content.qml @@ -0,0 +1,22 @@ +import "root:/widgets" +import "root:/services" +import "root:/config" +import Quickshell +import QtQuick + +Column { + id: root + + // padding: Appearance.padding.large + + anchors.bottom: parent.bottom + anchors.right: parent.right + + spacing: Appearance.spacing.normal + + StyledRect { + width: 300 + height: 100 + // color: Qt.rgba(255, 0, 0, 0.4) + } +} |