feat: User模块UI界面搭建完成

This commit is contained in:
Jim__TT
2023-10-17 02:23:12 +08:00
parent 79d9099237
commit b4545ec182
12 changed files with 511 additions and 45 deletions

View File

@@ -0,0 +1,28 @@
#content {
display: flex;
border-top: 1px solid black;
.left-dept {
flex: 20%;
padding: 35px 12px 0 0;
height: calc(100vh - 85px);
border: 1px solid red;
border-top: 1px solid black;
}
.right-user {
flex: 80%;
height: 190px;
display: flex;
flex-direction: column;
.user-top-search {
}
.user-mid-button {
display: flex;
margin-left: 12px;
margin-top: 20px;
button:focus,
button:focus-visible {
outline: none;
}
}
}
}