prevention/components/List/index.wxss

38 lines
617 B
Plaintext

/* components/List/index.wxss */
.list {
box-sizing: border-box;
width: 100%;
height: 100%;
}
.min-height {
height: 400rpx;
}
::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
color: transparent;
}
.empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transform: translateY(100rpx);
}
.empty .image {
height: 201rpx;
width: 306rpx;
}
.empty-text {
font-size: 30rpx;
font-family: "PingFangSC-Regular", "PingFang SC";
font-weight: normal;
color: rgba(0, 0, 0, 0.4);
margin-top: 26rpx;
}