fix: math overflow

pull/3337/head
Steven 1 year ago
parent fe5a0fe98a
commit 5f207c8f0c

@ -7,7 +7,7 @@ interface Props {
} }
const Math: React.FC<Props> = ({ content, block }: Props) => { const Math: React.FC<Props> = ({ content, block }: Props) => {
return <TeX block={block} math={content}></TeX>; return <TeX className="max-w-full inline-block overflow-auto" block={block} math={content}></TeX>;
}; };
export default Math; export default Math;

Loading…
Cancel
Save