summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/StyledMarkdownPreview.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'extension/react-app/src/components/StyledMarkdownPreview.tsx')
-rw-r--r--extension/react-app/src/components/StyledMarkdownPreview.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/react-app/src/components/StyledMarkdownPreview.tsx b/extension/react-app/src/components/StyledMarkdownPreview.tsx
index b1079c96..5957f8dd 100644
--- a/extension/react-app/src/components/StyledMarkdownPreview.tsx
+++ b/extension/react-app/src/components/StyledMarkdownPreview.tsx
@@ -11,7 +11,6 @@ const StyledMarkdownPreview = styled(MarkdownPreview)<{ light?: boolean }>`
pre {
background-color: ${(props) =>
props.light ? vscBackground : secondaryDark};
- padding: 1px;
border-radius: ${defaultBorderRadius};
border: 0.5px solid white;
}
@@ -27,6 +26,7 @@ const StyledMarkdownPreview = styled(MarkdownPreview)<{ light?: boolean }>`
background-color: ${(props) =>
props.light ? vscBackground : secondaryDark};
color: ${vscForeground};
+ padding: 10px;
}
background-color: ${(props) => (props.light ? "transparent" : vscBackground)};