From 0ee043b3196d94cc47ec207823d8e7cd33fda9e7 Mon Sep 17 00:00:00 2001 From: Anwarul Islam Date: Sat, 12 Jul 2025 23:49:49 +0600 Subject: [PATCH] fix: enhance layout of editor and resizable components for better usability --- apps/web/src/app/editor/[project_id]/page.tsx | 7 ++++--- apps/web/src/components/ui/resizable.tsx | 8 +------- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/apps/web/src/app/editor/[project_id]/page.tsx b/apps/web/src/app/editor/[project_id]/page.tsx index b3641e3..db17dd4 100644 --- a/apps/web/src/app/editor/[project_id]/page.tsx +++ b/apps/web/src/app/editor/[project_id]/page.tsx @@ -55,9 +55,9 @@ export default function Editor() { return ( -
+
-
+
{/* Main content area */} diff --git a/apps/web/src/components/ui/resizable.tsx b/apps/web/src/components/ui/resizable.tsx index 8c2202b..fef4fbb 100644 --- a/apps/web/src/components/ui/resizable.tsx +++ b/apps/web/src/components/ui/resizable.tsx @@ -33,13 +33,7 @@ const ResizableHandle = ({ className )} {...props} - > - {withHandle && ( -
- -
- )} - + /> ); export { ResizablePanelGroup, ResizablePanel, ResizableHandle };