You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
739 B
42 lines
739 B
@import "mixins/mixins"; |
|
@import "common/var"; |
|
|
|
@include b(select-group) { |
|
$gap: 20px; |
|
|
|
margin: 0; |
|
padding: 0; |
|
|
|
@include e(wrap) { |
|
position: relative; |
|
list-style: none; |
|
margin: 0; |
|
padding: 0; |
|
|
|
&:not(:last-of-type) { |
|
padding-bottom: 24px; |
|
|
|
&::after { |
|
content: ''; |
|
position: absolute; |
|
display: block; |
|
left: $gap; |
|
right: $gap; |
|
bottom: 12px; |
|
height: 1px; |
|
background: $--border-color-light; |
|
} |
|
} |
|
} |
|
|
|
@include e(title) { |
|
padding-left: $gap; |
|
font-size: $--select-group-font-size; |
|
color: $--select-group-color; |
|
line-height: $--select-group-height; |
|
} |
|
|
|
& .el-select-dropdown__item { |
|
padding-left: $gap; |
|
} |
|
}
|
|
|