From 0e0b337a8b983e37e5453d4ae86f3c84d0d5b97c Mon Sep 17 00:00:00 2001 From: Memory <134070804+Memory2314@users.noreply.github.com> Date: Mon, 5 Jan 2026 20:59:36 +0800 Subject: [PATCH] fix: correct sidebar card horizontal offset issue --- src/renderer/src/App.tsx | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/renderer/src/App.tsx b/src/renderer/src/App.tsx index 4ddef18..cfa5c1f 100644 --- a/src/renderer/src/App.tsx +++ b/src/renderer/src/App.tsx @@ -261,17 +261,19 @@ const App: React.FC = () => {
- -
- - {order.map((key: string) => { - const Component = componentMap[key] - if (!Component) return null - return - })} - -
-
+
+ +
+ + {order.map((key: string) => { + const Component = componentMap[key] + if (!Component) return null + return + })} + +
+
+
)}