We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a50a722 commit a6a5c72Copy full SHA for a6a5c72
apps/landing/src/app/(detail)/components/MdxCardFooter.tsx
@@ -94,9 +94,9 @@ export default function MdxCardFooter({
94
<Box
95
borderTop="1px solid $border"
96
h="100%"
97
+ onWheel={(e) => e.stopPropagation()}
98
overflow="auto"
- px="24px"
99
- py="16px"
+ p={['12px', null, '24px']}
100
>
101
{children}
102
</Box>
apps/landing/src/components/Code.tsx
@@ -17,7 +17,12 @@ export const Code = ({
17
display: 'none',
18
}}
19
20
- <SyntaxHighlighter language={language} showLineNumbers style={Light}>
+ <SyntaxHighlighter
21
+ customStyle={{ margin: 0 }}
22
+ language={language}
23
+ showLineNumbers
24
+ style={Light}
25
+ >
26
{value}
27
</SyntaxHighlighter>
28
0 commit comments