fix(MysParse): 800px比900px好看

This commit is contained in:
BTMuli
2023-03-12 02:21:56 +08:00
parent 663d2511c8
commit 6984cbf2bf

View File

@@ -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;
}