From ba1ede2e3115846f8331d32c8e27870bbfbd5889 Mon Sep 17 00:00:00 2001 From: nizzy <140507264+nizzyabi@users.noreply.github.com> Date: Wed, 5 Mar 2025 11:15:01 -0500 Subject: [PATCH] fix: plain z index (#19767) --- apps/web/lib/plain/plainChat.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/lib/plain/plainChat.tsx b/apps/web/lib/plain/plainChat.tsx index 94a7f26888..696de82d6d 100644 --- a/apps/web/lib/plain/plainChat.tsx +++ b/apps/web/lib/plain/plainChat.tsx @@ -69,6 +69,7 @@ interface PlainChatConfig { launcherIconColor: string; }; position: { + zIndex: string; bottom: string; right: string; }; @@ -232,6 +233,7 @@ const PlainChat = () => { launcherIconColor: "#FFFFFF", }, position: { + zIndex: "1", bottom: "20px", right: "20px", },