From 6984cbf2bf9f5a4074c84b0bab84ed3ce8b5f404 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Sun, 12 Mar 2023 02:21:56 +0800 Subject: [PATCH] =?UTF-8?q?fix(MysParse):=20800px=E6=AF=94900px=E5=A5=BD?= =?UTF-8?q?=E7=9C=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/MysParse.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/MysParse.ts b/src/utils/MysParse.ts index 8d3878ba..3494e8cc 100644 --- a/src/utils/MysParse.ts +++ b/src/utils/MysParse.ts @@ -82,7 +82,7 @@ export function parseMys(data: string): Document { } }); // doc 宽度设为 800,居中 - doc.body.style.width = "900px"; + doc.body.style.width = "800px"; doc.body.style.margin = "20px auto"; return doc; }