From 41fa7fd343107a27da04c9b883725add8a7f9076 Mon Sep 17 00:00:00 2001 From: "vicky_primathon.in" Date: Fri, 22 May 2020 16:22:20 +0530 Subject: [PATCH] right panel width reverted to 75% --- app/client/src/pages/Editor/routes.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/src/pages/Editor/routes.tsx b/app/client/src/pages/Editor/routes.tsx index 003f9ec153..c84869a870 100644 --- a/app/client/src/pages/Editor/routes.tsx +++ b/app/client/src/pages/Editor/routes.tsx @@ -40,7 +40,7 @@ const DrawerWrapper = styled.div<{ showOnlySidebar?: boolean; }>` background-color: white; - width: ${props => (props.showOnlySidebar ? "0px" : "100%")}; + width: ${props => (props.showOnlySidebar ? "0px" : "75%")}; height: 100%; `;