index.module.scss 298 B

123456789101112131415161718
  1. .MyTable {
  2. :global {
  3. .ant-table-body {
  4. overflow-y: auto !important;
  5. overflow-y: overlay !important;
  6. .ant-table-row {
  7. .ant-table-cell {
  8. padding: 10px;
  9. a {
  10. color: var(--themeColor) !important;
  11. }
  12. }
  13. }
  14. }
  15. }
  16. }