daofu-applet/components/pop-sheet/index.wxss

47 lines
706 B
Plaintext
Raw Normal View History

2024-01-29 17:42:38 +08:00
/* components/pop-sheet/index.wxss */
@import "/colorui/main.wxss";
@import "/colorui/icon.wxss";
@import "/app.wxss";
.box {
position: absolute;
left: 5%;
}
.pop {
max-height: 50vh;
overflow-y: scroll;
}
.pop .item-pop {
padding: 20rpx;
border-bottom: 1rpx dashed #f5f5f5;
}
.pop-option {
background-color: #f5f5f5;
height: 80rpx;
position: relative;
}
.pop-option .btn {
flex: 1;
font-size: 30rpx;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.pop-option .sub {
color: var(--blue) !important;
}
.pop-option .sub::before {
position: absolute;
left: 50%;
content: ' ';
width: 1rpx;
height: 70%;
background-color: #e5e5e5;
}