左侧栏初步

This commit is contained in:
禺狨
2023-03-02 14:25:18 +08:00
parent a856fb83c4
commit 569d478e15
12 changed files with 102 additions and 64 deletions

View File

View File

@@ -0,0 +1,10 @@
import React from "react";
import styles from "./Dashboard.module.css";
export const Dashboard: React.FC<any> = () => {
return (
<div>
<p></p>
</div>
);
};

View File

@@ -0,0 +1 @@
export * from "./Dashboard";

View File

@@ -1,14 +1,6 @@
.page-content {
width: 1200px;
min-height: calc(100vh - 173px);
margin-left: auto;
margin-right: auto;
margin-top: 30px;
margin-bottom: 100px;
}
.layout-wrap {
width: 100%;
height: 100vh;
display: flex;
}
@@ -21,3 +13,16 @@
display: flex;
flex-direction: column;
}
.right-top {
width: 100%;
height: 48px;
}
.right-main {
flex: 1;
box-sizing: border-box;
padding: 24px;
overflow-y: auto;
background-color: #f1f2f9;
}

View File

@@ -1,2 +1,3 @@
export * from "./home";
export * from "./login";
export * from "./login";
export * from "./dashboard";