From 987b0aedfaedfc821a8a2bbcb78128ff2ac0f72c Mon Sep 17 00:00:00 2001 From: Hardik Date: Wed, 27 May 2026 03:32:37 +0530 Subject: [PATCH] fix(mobile): prevent notification dropdown overflow on small screens The dropdown was w-96 (384 px) anchored right-0 to the bell button. On phones the bell sits left of the logout icon so the panel bled off the left viewport edge. Changed to w-80/sm:w-96 with a 100vw safety cap. Co-Authored-By: Claude Sonnet 4.6 --- App/components/layout/notification-bell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App/components/layout/notification-bell.tsx b/App/components/layout/notification-bell.tsx index 75a54f5..a037463 100644 --- a/App/components/layout/notification-bell.tsx +++ b/App/components/layout/notification-bell.tsx @@ -114,7 +114,7 @@ export function NotificationBell({ initialUnreadCount, initialNotifications }: P {/* Dropdown panel */} {open && ( -
+
{/* Header */}

Notifications