23 lines
393 B
Plaintext
23 lines
393 B
Plaintext
|
/* components/loading/pageloading.wxss */
|
||
|
.page-loading-box {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
background: rgba(255, 255, 255, 1);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.page-loading-box image {
|
||
|
width: 128rpx;
|
||
|
height: 128rpx;
|
||
|
}
|
||
|
|
||
|
.page-loading-box .text {
|
||
|
margin-top: 20rpx;
|
||
|
font-size: 28rpx;
|
||
|
}
|