index.less 599 B

1234567891011121314151617181920212223242526272829303132
  1. .mtp-table-scroll {
  2. flex : 1;
  3. overflow : hidden;
  4. display : flex;
  5. flex-direction: column;
  6. height : 100%;
  7. &:not(:first-child) {
  8. margin-top: 2px;
  9. }
  10. &__container {
  11. flex : 1;
  12. overflow-y: auto;
  13. }
  14. .ant-table-wrapper,
  15. .ant-table-content,
  16. .ant-table-scroll,
  17. .ant-table-body {
  18. height : 100%;
  19. background-color: transparent !important;
  20. }
  21. .ant-table {
  22. background-color: transparent;
  23. }
  24. .ant-table-empty .ant-table-body {
  25. display: none;
  26. }
  27. }