24 lines
428 B
Plaintext
24 lines
428 B
Plaintext
|
/* components/empty/empty.wxss */
|
||
|
.data-empty {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
text-align: center;
|
||
|
align-self: center;
|
||
|
|
||
|
position: fixed;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
transform: translateX(-50%)translateY(-50%);
|
||
|
}
|
||
|
|
||
|
.data-empty image {
|
||
|
width: 180rpx;
|
||
|
height: 120rpx;
|
||
|
}
|
||
|
|
||
|
.data-empty .hint {
|
||
|
margin-top: 30rpx;
|
||
|
font-size: 32rpx;
|
||
|
}
|