index.module.scss 605 B

1234567891011121314151617181920212223242526272829303132
  1. .User {
  2. :global {
  3. .selectBox {
  4. border-radius: 10px;
  5. padding: 20px 15px;
  6. background-color: #fff;
  7. display: flex;
  8. .selectBoxRow{
  9. margin-right: 30px;
  10. }
  11. }
  12. .tableBox {
  13. border-radius: 10px;
  14. overflow: hidden;
  15. margin-top: 20px;
  16. height: calc(100% - 94px);
  17. background-color: #fff;
  18. .ant-table-body {
  19. height: 620px;
  20. overflow-y: auto !important;
  21. overflow-y: overlay !important;
  22. .ant-table-row {
  23. .ant-table-cell {
  24. padding: 10px;
  25. }
  26. }
  27. }
  28. }
  29. }
  30. }