mirror of
https://github.com/usememos/memos.git
synced 2024-11-15 03:07:04 +08:00
chore: fix math styles
This commit is contained in:
parent
cf1be81de2
commit
2ebf3f2615
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
import TeX from "@matejmazur/react-katex";
|
||||
import clsx from "clsx";
|
||||
import "katex/dist/katex.min.css";
|
||||
|
||||
interface Props {
|
||||
|
@ -7,7 +8,7 @@ interface Props {
|
|||
}
|
||||
|
||||
const Math: React.FC<Props> = ({ content, block }: Props) => {
|
||||
return <TeX className="max-w-full inline-block overflow-auto" block={block} math={content}></TeX>;
|
||||
return <TeX className={clsx("max-w-full", block ? "w-full block" : "inline text-sm")} block={block} math={content}></TeX>;
|
||||
};
|
||||
|
||||
export default Math;
|
||||
|
|
Loading…
Reference in a new issue