index.module.scss 733 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .IntegralEdit {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. background-color: rgb(239, 239, 239);
  7. :global {
  8. .pageTitle {
  9. width: 100%;
  10. font-size: 25px;
  11. display: flex;
  12. justify-content: space-between;
  13. &:nth-child(2) {
  14. margin-left: 10px;
  15. }
  16. }
  17. .pageTitle::before {
  18. background: none;
  19. }
  20. .tableMain {
  21. border-radius: 10px;
  22. height: 92%;
  23. margin-top: 5%;
  24. background-color: #fff;
  25. ::-webkit-scrollbar {
  26. /*滚动条整体样式*/
  27. width: 0;
  28. /*高宽分别对应横竖滚动条的尺寸*/
  29. height: 0;
  30. }
  31. .ant-table-body {
  32. height: 500px;
  33. }
  34. }
  35. }
  36. }