18 lines
268 B
Plaintext
18 lines
268 B
Plaintext
|
|
/* pages/components/empty.wxss */
|
||
|
|
.empty-content {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
flex-direction: column;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.image {
|
||
|
|
width: 50vw;
|
||
|
|
padding: 20rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text {
|
||
|
|
font-size: 30rpx;
|
||
|
|
color: #B3B3B3;
|
||
|
|
}
|