remotePicker.wxss 426 B

123456789101112131415161718192021222324
  1. /* components/remotePicker/remotePicker.wxss */
  2. .scroll {
  3. max-height: 30vh;
  4. width: 50vw;
  5. border: 1px solid grey;
  6. position: absolute;
  7. top: 10rpx;
  8. background: rgba(256, 256, 256, 0.5);
  9. backdrop-filter: blur(3px);
  10. z-index: 100;
  11. padding-left: 20rpx;
  12. color: #333;
  13. }
  14. .remote-picker-input {
  15. padding-left: 20rpx;
  16. /* border: 1px solid grey; */
  17. height: 80rpx;
  18. width: 50vw;
  19. }
  20. .items {
  21. line-height: 80rpx
  22. }