完成文件上传管理

This commit is contained in:
augushong
2021-06-19 18:41:05 +08:00
parent ae9f2c6999
commit 1be98f85b6
30 changed files with 51988 additions and 163 deletions

View File

@@ -0,0 +1,29 @@
body {
background-color: #e2e2e2;
}
.file-list {
padding: 15px;
margin : 15px;
border : 3px dashed #bbb;
min-height: 200px;
}
.file-item {
display : flex;
align-items : center;
justify-content: space-between;
background-color: #ddd;
padding: 5px;
cursor: pointer;
}
.file-item:hover{
background-color: #ccc;
}
.file-size{
margin-left: 15px;
color: #999;
}