123456789101112131415161718 |
- .AsyncSpinLoding {
- display: none;
- position: fixed;
- z-index: 99;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(255, 255, 255, .4);
- :global{
- .ant-spin-spinning{
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- }
- }
- }
|