1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
| @use 'sass:map';
|
| @use 'mixins/mixins' as *;
| @use 'common/var' as *;
|
| @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: getCssVar('border-color-light');
| }
| }
| }
|
| @include e(split) {
| &-dash {
| position: absolute;
| left: $gap;
| right: $gap;
| height: 1px;
| background: getCssVar('border-color-light');
| }
| }
|
| @include e(title) {
| padding-left: $gap;
| font-size: map.get($select-group, 'font-size');
| color: map.get($select-group, 'text-color');
| line-height: map.get($select-group, 'height');
| }
|
| & .#{$namespace}-select-dropdown__item {
| padding-left: $gap;
| }
| }
|
|