From 2a2a5562cbb64c69d09c040dfd1fc4b9d8e014c7 Mon Sep 17 00:00:00 2001 From: Cole Goldsmith Date: Mon, 22 Sep 2025 10:54:24 -0500 Subject: [PATCH] fix app layout --- frontend/src/components/layout-wrapper.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/layout-wrapper.tsx b/frontend/src/components/layout-wrapper.tsx index 1ad64568..e6281251 100644 --- a/frontend/src/components/layout-wrapper.tsx +++ b/frontend/src/components/layout-wrapper.tsx @@ -100,9 +100,9 @@ export function LayoutWrapper({ children }: { children: React.ReactNode }) { isMenuOpen && isPanelOpen ? 'md:pr-[728px]' : // Both open: 384px (menu) + 320px (KF panel) + 24px (original padding) isMenuOpen ? 'md:pr-96' : // Only menu open: 384px isPanelOpen ? 'md:pr-80' : // Only KF panel open: 320px - 'md:pr-6' // Neither open: 24px + 'md:pr-0' }`}> -
+
{children}