option-group.scss 739 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @import "mixins/mixins";
  2. @import "common/var";
  3. @include b(select-group) {
  4. $gap: 20px;
  5. margin: 0;
  6. padding: 0;
  7. @include e(wrap) {
  8. position: relative;
  9. list-style: none;
  10. margin: 0;
  11. padding: 0;
  12. &:not(:last-of-type) {
  13. padding-bottom: 24px;
  14. &::after {
  15. content: '';
  16. position: absolute;
  17. display: block;
  18. left: $gap;
  19. right: $gap;
  20. bottom: 12px;
  21. height: 1px;
  22. background: $--border-color-light;
  23. }
  24. }
  25. }
  26. @include e(title) {
  27. padding-left: $gap;
  28. font-size: $--select-group-font-size;
  29. color: $--select-group-color;
  30. line-height: $--select-group-height;
  31. }
  32. & .el-select-dropdown__item {
  33. padding-left: $gap;
  34. }
  35. }