登录页面和我的页面初步

This commit is contained in:
禺狨
2023-06-25 16:29:59 +08:00
parent 5486507b3e
commit b6b9c3514a
5 changed files with 370 additions and 11 deletions

View File

@@ -1,4 +1,6 @@
.img-box {
width: 100%;
height: auto;
display: flex;
justify-content: center;
}

View File

@@ -6,7 +6,7 @@ import empty from "../../assets/images/commen/empty.png";
export const Empty: React.FC = () => {
return (
<div className={styles["img-box"]}>
<Image src={empty} width={400} height={400} />
<Image src={empty} width={250} height={250} />
</div>
);
};