From aa2ee0bf6030a1905b3a3879795c8fe38731484a Mon Sep 17 00:00:00 2001 From: Sudhanshu Dasgupta Date: Wed, 5 Jun 2024 18:40:38 +0530 Subject: [PATCH] fix(margin): markdown Signed-off-by: Sudhanshu Dasgupta --- src/custom/Markdown/style.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/custom/Markdown/style.tsx b/src/custom/Markdown/style.tsx index cfcd3f36..127d45cb 100644 --- a/src/custom/Markdown/style.tsx +++ b/src/custom/Markdown/style.tsx @@ -12,6 +12,7 @@ export const StyledMarkdown = styled('a')(({ theme }) => ({ export const StyledMarkdownP = styled('p')(({ theme }) => ({ color: theme.palette.text.default, + marginBlock: '0px', ...theme.typography.textB1Regular })); @@ -61,10 +62,12 @@ export const StyledMarkdownLi = styled('li')(({ theme }) => ({ export const StyledMarkdownTh = styled('th')(({ theme }) => ({ color: theme.palette.text.default, - ...theme.typography.textH3Medium + ...theme.typography.textH3Medium, + marginBlock: '0px' })); export const StyledMarkdownTd = styled('td')(({ theme }) => ({ color: theme.palette.text.default, + marginBlock: '0px', ...theme.typography.textB1Regular }));