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] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Matiss Janis Aboltins
2026-01-20 22:14:39 +01:00
committed by GitHub
parent 713ac88fee
commit 8f2369d5b8
2 changed files with 7 additions and 0 deletions

View File

@@ -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,
}}
>

View File

@@ -0,0 +1,6 @@
---
category: Bugfixes
authors: [MatissJanis]
---
Fix notification container width for improved positioning on desktop screens.