var.scss 412 B

1234567891011121314151617181920
  1. /* global css variable */
  2. $primary-color: var(--el-color-primary);
  3. .list-group-striped > .list-group-item {
  4. padding-right: 0;
  5. padding-left: 0;
  6. border-right: 0;
  7. border-left: 0;
  8. border-radius: 0;
  9. }
  10. .list-group {
  11. padding-left: 0;
  12. list-style: none;
  13. }
  14. .list-group-item {
  15. padding: 11px 0;
  16. margin-bottom: -1px;
  17. font-size: 13px;
  18. border-top: 1px solid #e7eaec;
  19. border-bottom: 1px solid #e7eaec;
  20. }