blob: 78d4234c6981d5c0c33032db077c44fb3ab273c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import styled from "styled-components";
import {
defaultBorderRadius,
lightGray,
secondaryDark,
vscBackground,
vscForeground,
} from ".";
import MarkdownPreview from "@uiw/react-markdown-preview";
import { getFontSize } from "../util";
const StyledMarkdownPreview = styled(MarkdownPreview)<{
light?: boolean;
fontSize?: number;
}>`
pre {
background-color: ${(props) =>
props.light ? vscBackground : secondaryDark};
border-radius: ${defaultBorderRadius};
border: 0.5px solid ${lightGray};
max-width: calc(100vw - 24px);
}
code {
color: #f78383;
word-wrap: break-word;
border-radius: ${defaultBorderRadius};
background-color: ${secondaryDark};
}
pre > code {
background-color: ${(props) =>
props.light ? vscBackground : secondaryDark};
color: ${vscForeground};
padding: 12px;
}
background-color: ${(props) => (props.light ? "transparent" : vscBackground)};
font-family: "Lexend", sans-serif;
font-size: ${(props) => props.fontSize || getFontSize()}px;
padding: 8px;
color: ${vscForeground};
`;
export default StyledMarkdownPreview;
|