资料目录管理;工作组成员维护

This commit is contained in:
zhaoxiao
2021-09-02 17:57:11 +08:00
parent d8b540041b
commit 365dc7f6bb
6 changed files with 255 additions and 163 deletions
+26
View File
@@ -69,3 +69,29 @@
color: #069f99;
cursor: pointer;
}
// 标题及标题前的圆点
.part-title {
padding: 10px 0;
font-size: 16px;
font-family: PingFang SC, PingFang SC-Bold;
font-weight: 700;
text-align: left;
color: #333333;
position: relative;
&-text {
padding-left: 20px;
}
&-text::before {
position: absolute;
content: "";
left: 0;
top: 50%;
transform: translateY(-50%);
width: 10px;
height: 10px;
background: #069f99;
}
}