index.module.less 344B

123456789101112131415161718192021222324
  1. // {
  2. // .ant-modal {
  3. // .ant-modal-body {
  4. // overflow-y: scroll;
  5. // height: 90%;
  6. // }
  7. // }
  8. // }
  9. .modalContainer {
  10. :global(.ant-modal-content) {
  11. height: 700px;
  12. overflow: hidden;
  13. }
  14. :global(.ant-modal-body) {
  15. overflow-y: scroll;
  16. height: 90%;
  17. }
  18. }