index.module.scss 549 B

12345678910111213141516171819202122232425262728293031323334
  1. .A2Integral {
  2. :global {
  3. .logTop {
  4. border-radius: 10px;
  5. background-color: #fff;
  6. .tableSelectBox {
  7. padding: 15px 24px;
  8. display: flex;
  9. align-items: center;
  10. .row {
  11. margin-right: 20px;
  12. }
  13. .reSetBtn{
  14. float: right;
  15. height: 100%;
  16. }
  17. }
  18. }
  19. .tableMain {
  20. border-radius: 10px;
  21. margin-top: 15px;
  22. height: calc(100% - 75px);
  23. background-color: #fff;
  24. .ant-table-body {
  25. height: 500px;
  26. }
  27. }
  28. }
  29. }