index.less 746 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @import (reference) './variable.less';
  2. @listPrefix: ant-list;
  3. .@{listPrefix} {
  4. &-radius {
  5. margin: 0 @v-spacing-large;
  6. & .@{listPrefix}-body {
  7. border-radius: @list-radius;
  8. }
  9. .@{listPrefix}-header,
  10. .@{listPrefix}-footer {
  11. padding: @v-spacing-standard 0;
  12. }
  13. }
  14. &-header,
  15. &-footer {
  16. display: flex;
  17. align-items: center;
  18. padding: @v-spacing-standard @v-spacing-large;
  19. line-height: 1.4;
  20. font-size: 30 * @rpx;
  21. color: @list-header-color;
  22. &:empty {
  23. display: none;
  24. }
  25. }
  26. &-body {
  27. position: relative;
  28. overflow: hidden;
  29. // 隐藏最后一根分割线
  30. > .ant-list-item:last-child {
  31. .ant-list-item-line::after {
  32. display: none;
  33. }
  34. }
  35. }
  36. }