From 5e72d210d465083f9fe893b0147710faaf542045 Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Wed, 30 Jul 2025 22:23:57 +0700 Subject: [PATCH] fix: missing text color responsive left panel (#5989) --- web-app/src/containers/LeftPanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-app/src/containers/LeftPanel.tsx b/web-app/src/containers/LeftPanel.tsx index 0f7269552..fc1289c93 100644 --- a/web-app/src/containers/LeftPanel.tsx +++ b/web-app/src/containers/LeftPanel.tsx @@ -197,7 +197,7 @@ const LeftPanel = () => { isResizableContext && 'h-full w-full', // Small screen context: fixed positioning and styling isSmallScreen && - 'fixed h-[calc(100%-16px)] bg-main-view z-40 rounded-sm border border-left-panel-fg/10 m-2 px-1 w-48', + 'fixed h-[calc(100%-16px)] bg-app z-50 rounded-sm border border-left-panel-fg/10 m-2 px-1 w-48', // Default context: original styling !isResizableContext && !isSmallScreen &&