2024-09-23 13:49:58 +08:00
|
|
|
.file-item{
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
2024-10-21 11:13:02 +08:00
|
|
|
margin-top: 10px !important;
|
2024-09-23 13:49:58 +08:00
|
|
|
align-items: center;
|
|
|
|
|
border: 1px solid #dedede;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 1%;
|
|
|
|
|
.file-description{
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
column-gap: 10px;
|
|
|
|
|
img{
|
|
|
|
|
width: 40px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
// margin-right: 10px;
|
|
|
|
|
}
|
2025-04-09 17:43:19 +08:00
|
|
|
span{
|
|
|
|
|
display: block;
|
|
|
|
|
width: 180px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-23 13:49:58 +08:00
|
|
|
}
|
|
|
|
|
.delete-icon{
|
|
|
|
|
// margin-left: 1%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|