fixed: loading页面的高度

This commit is contained in:
none 2023-07-04 16:41:13 +08:00
parent fe7b20ff23
commit ae4cdb0de1

View File

@ -2,7 +2,7 @@ import { SpinLoading } from "antd-mobile";
const LoadingPage = () => {
return (
<div style={{ width: "100%", display: "flex", justifyContent: "center" }}>
<div style={{ width: "100vw", height: "100vh", display: "flex", justifyContent: "center" }}>
<SpinLoading color="primary" />
</div>
);