index.module.scss 695 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .A5goods {
  2. :global {
  3. .A5top {
  4. padding: 15px 24px;
  5. border-radius: 10px;
  6. background-color: #fff;
  7. display: flex;
  8. justify-content: space-between;
  9. .A5topRow {
  10. display: flex;
  11. &>div {
  12. margin-right: 20px;
  13. }
  14. }
  15. }
  16. .A5tableBox {
  17. border-radius: 10px;
  18. overflow: hidden;
  19. margin-top: 15px;
  20. height: calc(100% - 77px);
  21. background-color: #fff;
  22. .ant-table-body {
  23. height: 625px;
  24. overflow-y: auto !important;
  25. overflow-y: overlay !important;
  26. .ant-table-row {
  27. .ant-table-cell {
  28. padding: 10px;
  29. }
  30. }
  31. }
  32. }
  33. }
  34. }