electricity_bill_calc_wx/components/select/index.wxss
2024-03-15 17:20:54 +08:00

35 lines
399 B
Plaintext

/* components/select/index.wxss */
.content {
position: relative;
}
.options {
background-color: #fff;
padding: 20rpx;
width: 100%;
}
.option {
padding: 8rpx;
}
.modal {
position: absolute;
top: 100rpx;
left: 0;
width: 100%;
height: calc(100vh - 100rpx);
z-index: 99;
background-color: transparent;
display: flex;
flex-direction: column;
}
.other {
flex: 1;
}