feat: sort and group members

This commit is contained in:
Tristan Yang
2023-09-26 12:16:01 +08:00
parent 11504023ec
commit 3045f3add3
9 changed files with 593 additions and 329 deletions
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 234 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

+20
View File
@@ -356,3 +356,23 @@ input[type="number"]::-webkit-outer-spin-button {
.or:has(+ .socials:empty) {
display: none;
}
/* 成员分组 */
[data-group-title] {
margin-top: 42px;
position: relative;
}
[data-group-title]:before {
pointer-events: none;
font-size: 12px;
font-weight: 600;
line-height: 18px;
letter-spacing: 0.6px;
text-transform: uppercase;
color: #667085;
content: attr(data-group-title);
position: absolute;
left: 8px;
top: -34px;
}