From 44ffb950152b52e12dffe4845048c582545aeced Mon Sep 17 00:00:00 2001 From: rahulshendre Date: Tue, 9 Dec 2025 22:10:07 +0530 Subject: [PATCH 1/2] Fix WECS panel size inconsistency Signed-off-by: rahulshendre --- frontend/src/components/wecs_details/WecsDetailsStyles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/wecs_details/WecsDetailsStyles.ts b/frontend/src/components/wecs_details/WecsDetailsStyles.ts index 79e2feb24..a0104525b 100644 --- a/frontend/src/components/wecs_details/WecsDetailsStyles.ts +++ b/frontend/src/components/wecs_details/WecsDetailsStyles.ts @@ -42,7 +42,7 @@ export const getPanelStyles = (theme: string, isOpen: boolean) => ({ top: 0, bottom: 0, width: '80vw', - maxWidth: '600px', + maxWidth: '80vw', bgcolor: theme === 'dark' ? '#1F2937' : '#eff3f5', boxShadow: '-2px 0 10px rgba(0,0,0,0.2)', transition: isOpen ? 'right 0.4s ease-in-out' : 'right 0.4s ease-in-out, visibility 0s 0.4s', From 69d455de7fec04cfd10f5f063c2a58d0139b9dff Mon Sep 17 00:00:00 2001 From: rahulshendre Date: Wed, 10 Dec 2025 19:52:57 +0530 Subject: [PATCH 2/2] format WECS details panel style Signed-off-by: rahulshendre --- frontend/src/components/wecs_details/WecsDetailsStyles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/wecs_details/WecsDetailsStyles.ts b/frontend/src/components/wecs_details/WecsDetailsStyles.ts index a0104525b..850f3c681 100644 --- a/frontend/src/components/wecs_details/WecsDetailsStyles.ts +++ b/frontend/src/components/wecs_details/WecsDetailsStyles.ts @@ -42,7 +42,7 @@ export const getPanelStyles = (theme: string, isOpen: boolean) => ({ top: 0, bottom: 0, width: '80vw', - maxWidth: '80vw', + maxWidth: '80vw', bgcolor: theme === 'dark' ? '#1F2937' : '#eff3f5', boxShadow: '-2px 0 10px rgba(0,0,0,0.2)', transition: isOpen ? 'right 0.4s ease-in-out' : 'right 0.4s ease-in-out, visibility 0s 0.4s',