Skip to content

Commit

Permalink
fix(margin): markdown
Browse files Browse the repository at this point in the history
Signed-off-by: Sudhanshu Dasgupta <[email protected]>
  • Loading branch information
sudhanshutech committed Jun 5, 2024
1 parent 63e0b80 commit aa2ee0b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/custom/Markdown/style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
}));

Expand Down Expand Up @@ -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
}));

0 comments on commit aa2ee0b

Please sign in to comment.