code horizontal scroll
Unanswered
Iridescent shark posted this in #help-forum
Iridescent sharkOP
How can I make code scroll horizontally instead of wrapping?
const CodeBlock: FC<any> = ({ style, ...props }) => {
return (
<Pre
style={{
whiteSpace: "pre-wrap",
wordBreak: "break-word",
marginTop: "1rem",
marginBottom: 0,
...style,
}}
{...props}
/>
);
};1 Reply
Iridescent sharkOP