From 5134d9b04b1aac44563f320be877d49c90c4997e Mon Sep 17 00:00:00 2001 From: Matt Kirby <MattJKirby@outlook.com> Date: Thu, 20 Apr 2023 23:47:43 +0100 Subject: [PATCH] like box max width fix for safari @FELI >:( --- daily-thought-frontend/src/components/user/UserList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daily-thought-frontend/src/components/user/UserList.tsx b/daily-thought-frontend/src/components/user/UserList.tsx index cfe017c1..7512ef27 100644 --- a/daily-thought-frontend/src/components/user/UserList.tsx +++ b/daily-thought-frontend/src/components/user/UserList.tsx @@ -25,7 +25,7 @@ const UserList: FC<PropsWithChildren<UserListProps>> = ({ Users, children }) => leaveFrom="opacity-100 translate-y-0" leaveTo="opacity-0 translate-y-1" > - <Popover.Panel className="absolute z-50 left-2/3 mt-8 w-screen w-60 -translate-x-1/2 transform px-4 sm:px-0"> + <Popover.Panel className="max-w-xs absolute z-50 left-2/3 mt-8 w-screen w-60 -translate-x-1/2 transform px-4 sm:px-0"> <div className=" relative overflow-hidden rounded-lg shadow-lg ring-1 ring-black ring-opacity-5"> <div className="bg-white p-3"> <span className="flex items-center border-b"> -- GitLab