Skip to content

Commit

Permalink
Merge pull request #642 from sudhanshutech/fix/margin
Browse files Browse the repository at this point in the history
fix margin for some tags in markdown support
  • Loading branch information
aabidsofi19 authored Jun 5, 2024
2 parents a304901 + aa2ee0b commit 4aad9f7
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 4aad9f7

Please sign in to comment.