From b8804bf7f906d72164dca53be995f149c19ad5cf Mon Sep 17 00:00:00 2001 From: Abhinav Date: Tue, 28 Jun 2022 16:22:21 +0530 Subject: [PATCH] fix message dilagob paper padding --- src/components/DialogBox/base.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DialogBox/base.tsx b/src/components/DialogBox/base.tsx index b00c936da..7ea9d29d5 100644 --- a/src/components/DialogBox/base.tsx +++ b/src/components/DialogBox/base.tsx @@ -2,7 +2,7 @@ import { Dialog, styled } from '@mui/material'; const DialogBoxBase = styled(Dialog)(({ theme }) => ({ '& .MuiDialog-paper': { - padding: 0, + padding: theme.spacing(1, 1.5), }, '& .MuiDialogTitle-root': { padding: theme.spacing(2),