index.module.scss 311 B

123456789101112131415161718
  1. .AsyncSpinLoding {
  2. display: none;
  3. position: fixed;
  4. z-index: 99;
  5. top: 0;
  6. left: 0;
  7. width: 100%;
  8. height: 100%;
  9. background-color: rgba(255, 255, 255, .4);
  10. :global{
  11. .ant-spin-spinning{
  12. position: absolute;
  13. top: 50%;
  14. left: 50%;
  15. transform: translate(-50%,-50%);
  16. }
  17. }
  18. }