123456789101112131415161718192021 |
- .AsyncSpinLoding {
- opacity: 0;
- pointer-events: none;
- transition: all .5s;
- position: fixed;
- z-index: 9998;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- // background-color: rgba(0, 0, 0, .6);
- background-color: transparent;
- :global{
- .ant-spin-spinning{
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- }
- }
- }
|