| 123456789101112131415161718192021222324 |
- /* components/remotePicker/remotePicker.wxss */
- .scroll {
- max-height: 30vh;
- width: 50vw;
- border: 1px solid grey;
- 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
- }
|