localPicker.wxss 535 B

1234567891011121314151617181920212223242526272829303132
  1. /* components/localPicker/localPicker.wxss */
  2. .scroll {
  3. max-height: 30vh;
  4. width: 50vw;
  5. border: 1px solid black;
  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. }
  23. .picker {
  24. padding-left: 20rpx;
  25. border: 1px solid grey;
  26. height: 80rpx;
  27. line-height: 80rpx;
  28. width: 50vw;
  29. }