8
0

option-group.scss 519 B

1234567891011121314151617181920212223242526272829
  1. @use 'sass:map';
  2. @use 'mixins/mixins' as *;
  3. @use 'common/var' as *;
  4. @include b(select-group) {
  5. $gap: 20px;
  6. margin: 0;
  7. padding: 0;
  8. @include e(wrap) {
  9. position: relative;
  10. list-style: none;
  11. margin: 0;
  12. padding: 0;
  13. }
  14. @include e(title) {
  15. padding-left: $gap;
  16. font-size: map.get($select-group, 'font-size');
  17. color: map.get($select-group, 'text-color');
  18. line-height: map.get($select-group, 'height');
  19. }
  20. & .#{$namespace}-select-dropdown__item {
  21. padding-left: $gap;
  22. }
  23. }