You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /* components/List/index.wxss */
- .list {
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- /* display: flex;
- flex-wrap: wrap; */
- /* justify-content: space-between; */
- /* align-content: flex-start; */
- }
-
- .min-height {
- height: 400rpx;
- }
-
- ::-webkit-scrollbar {
- display: none;
- width: 0;
- height: 0;
- color: transparent;
- }
-
- .empty {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- transform: translateY(100rpx);
- }
-
- .empty .image {
- height: 201rpx;
- width: 306rpx;
- }
-
- .empty-text {
- font-size: 32rpx;
- font-family: "PingFangSC-Regular", "PingFang SC";
- font-weight: normal;
- color: #B6CADC;
- margin-top: 26rpx;
- }
|