index.module.scss 388 B

123456789101112131415161718192021
  1. .AsyncSpinLoding {
  2. opacity: 0;
  3. pointer-events: none;
  4. transition: all .5s;
  5. position: fixed;
  6. z-index: 9998;
  7. top: 0;
  8. left: 0;
  9. width: 100%;
  10. height: 100%;
  11. // background-color: rgba(0, 0, 0, .6);
  12. background-color: transparent;
  13. :global{
  14. .ant-spin-spinning{
  15. position: absolute;
  16. top: 50%;
  17. left: 50%;
  18. transform: translate(-50%,-50%);
  19. }
  20. }
  21. }