| 1234567891011121314151617181920212223242526272829303132 |
- /* components/localPicker/localPicker.wxss */
- .scroll {
- max-height: 30vh;
- width: 50vw;
- border: 1px solid black;
- position: absolute;
- top: 10rpx;
- background: rgba(256, 256, 256, 0.5);
- backdrop-filter: blur(3px);
- z-index: 100;
- padding-left: 20rpx;
- color: #333;
- }
- .remote-picker-input {
- padding-left: 20rpx;
- border: 1px solid grey;
- height: 80rpx;
- width: 50vw;
- }
- .items {
- line-height: 80rpx
- }
- .picker {
- padding-left: 20rpx;
- border: 1px solid grey;
- height: 80rpx;
- line-height: 80rpx;
- width: 50vw;
- }
|