新增简约分组标题

This commit is contained in:
2022-04-07 21:51:27 +08:00
parent 62da76adae
commit 4544dc48c4
4 changed files with 98 additions and 61 deletions

View File

@@ -4,6 +4,7 @@
@import './form/index';
@import './fieldset/index';
@import './card/index';
@import './title/index';
/* 头部开始 */

View File

@@ -0,0 +1 @@
@import './ul-group-title-simple';

View File

@@ -0,0 +1,23 @@
.ul-group-title-simple {
line-height: 30px;
font-size : 16px;
padding-left: 10px;
position: relative;
&:before {
content : "";
display : block;
position: absolute;
left : 0;
height : 16px;
width : 3px;
top : 7px;
border-radius: 3px;
background : linear-gradient(0deg, #7FC0FC, #4B7EEF);
}
}