Skip to content

Commit

Permalink
fix(style): incorrect style
Browse files Browse the repository at this point in the history
Signed-off-by: Sudhanshu Dasgupta <[email protected]>
  • Loading branch information
sudhanshutech committed May 14, 2024
1 parent 107aa8b commit fe76d20
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/custom/CustomTooltip/customTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function CustomTooltip({
fontSize: { fontSize },
fontWeight: { fontWeight },
borderRadius: '0.5rem',
padding: '1rem'
padding: '0.9rem'
}
},
popper: {
Expand Down
2 changes: 0 additions & 2 deletions src/custom/Markdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
StyledMarkdownH5,
StyledMarkdownH6,
StyledMarkdownLi,
StyledMarkdownP,
StyledMarkdownTd,
StyledMarkdownTh,
StyledMarkdownUl
Expand All @@ -25,7 +24,6 @@ const RenderMarkdown: React.FC<RenderMarkdownProps> = ({ content }) => {
remarkPlugins={[remarkGfm]}
components={{
a: ({ ...props }) => <StyledMarkdown>{props.children}</StyledMarkdown>,
p: ({ ...props }) => <StyledMarkdownP>{props.children}</StyledMarkdownP>,
h1: ({ ...props }) => <StyledMarkdownH1>{props.children}</StyledMarkdownH1>,
h2: ({ ...props }) => <StyledMarkdownH2>{props.children}</StyledMarkdownH2>,
h3: ({ ...props }) => <StyledMarkdownH3>{props.children}</StyledMarkdownH3>,
Expand Down

0 comments on commit fe76d20

Please sign in to comment.