35 lines
399 B
Plaintext
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;
|
|
}
|
|
|