From 1802846599dac4b0dffff8c171c5d5c5f450b5bb Mon Sep 17 00:00:00 2001 From: Khusham Bansal Date: Thu, 5 Mar 2026 17:14:08 +0530 Subject: [PATCH] remove: bg color of MuiDrawer Signed-off-by: Khusham Bansal --- src/theme/components/drawer.modifier.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/theme/components/drawer.modifier.ts b/src/theme/components/drawer.modifier.ts index efc130d70..b7e74a3f9 100644 --- a/src/theme/components/drawer.modifier.ts +++ b/src/theme/components/drawer.modifier.ts @@ -1,12 +1,10 @@ import { Components, Theme } from '@mui/material'; -import { DARK_BLUE_GRAY } from '../colors'; export const MuiDrawer: Components['MuiDrawer'] = { styleOverrides: { root: { '& .MuiDrawer-paper': { - boxSize: 'border-box', - background: DARK_BLUE_GRAY + boxSize: 'border-box' } } }