list.scss 429 B

12345678910111213141516171819202122232425262728
  1. /**Variable**/
  2. .vxe-list {
  3. position: relative;
  4. display: block;
  5. padding: 0;
  6. color: $vxe-font-color;
  7. direction: ltr;
  8. .vxe-list--virtual-wrapper {
  9. position: relative;
  10. overflow: auto;
  11. }
  12. .vxe-list--y-space {
  13. width: 0;
  14. float: left;
  15. }
  16. .vxe-list--virtual-wrapper,
  17. .vxe-list--body {
  18. padding: 0;
  19. margin: 0;
  20. border: 0;
  21. outline: 0;
  22. }
  23. }
  24. .vxe-list--virtual-wrapper {
  25. height: 100px;
  26. }