开发: 登录等功能

This commit is contained in:
zhengw
2023-04-07 17:38:15 +08:00
parent f639dc8284
commit 5834254a8f
27 changed files with 1475 additions and 153 deletions

View File

@@ -0,0 +1,42 @@
.departmentItem {
display: flex;
flex-shrink: 0;
justify-content: space-between;
flex: 1;
width: 100%;
.name {
flex-shrink: 0;
min-width: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
flex: 1;
}
.btnsBox {
display: none;
.edit {
width: 24px;
color: #1890ff;
&:hover {
color: #40a9ff;
}
}
.del {
width: 24px;
color: #ff4d4f;
&:hover {
color: #ff7875;
}
}
}
&:hover .btnsBox {
display: inline-flex;
}
}