From 8f2369d5b873ed0727cef41971f52af1e4e33057 Mon Sep 17 00:00:00 2001 From: Matiss Janis Aboltins Date: Tue, 20 Jan 2026 22:14:39 +0100 Subject: [PATCH] Fix desktop notifications positioning (#6729) * Fix desktop notifications container width Add explicit width (400px) to the notifications container on desktop to fix the positioning issue introduced in #6551. Fixes #6718 * Add release notes for PR #6729 --------- Co-authored-by: github-actions[bot] --- packages/desktop-client/src/components/Notifications.tsx | 1 + upcoming-release-notes/6729.md | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 upcoming-release-notes/6729.md diff --git a/packages/desktop-client/src/components/Notifications.tsx b/packages/desktop-client/src/components/Notifications.tsx index 5d778e3ec9..1d709b6eec 100644 --- a/packages/desktop-client/src/components/Notifications.tsx +++ b/packages/desktop-client/src/components/Notifications.tsx @@ -387,6 +387,7 @@ export function Notifications({ style }: { style?: CSSProperties }) { right: notificationInset?.right || 13, left: notificationInset?.left || (isNarrowWidth ? 13 : undefined), zIndex: MODAL_Z_INDEX - 1, + width: isNarrowWidth ? undefined : 400, ...style, }} > diff --git a/upcoming-release-notes/6729.md b/upcoming-release-notes/6729.md new file mode 100644 index 0000000000..5a9adad349 --- /dev/null +++ b/upcoming-release-notes/6729.md @@ -0,0 +1,6 @@ +--- +category: Bugfixes +authors: [MatissJanis] +--- + +Fix notification container width for improved positioning on desktop screens.