Commit 5f207c8f authored by Steven's avatar Steven

fix: math overflow

parent fe5a0fe9
......@@ -7,7 +7,7 @@ interface 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;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment