picker-popup.scss 519 B

12345678910111213141516171819202122232425262728293031323334
  1. .picker-popup {
  2. z-index: 1002 !important;
  3. .picker-content{
  4. height: 55vh;
  5. background-color: #fff;
  6. border-radius: 30rpx 30rpx 0 0;
  7. .city-picker-btn {
  8. height: 100rpx;
  9. display: flex;
  10. justify-content: space-between;
  11. align-items: center;
  12. padding: 0 30rpx;
  13. }
  14. .picker-view {
  15. height: calc(100% - 100rpx);
  16. text-align: center;
  17. .indicator-class {
  18. height: 100rpx;
  19. }
  20. .uni-picker-view-content {
  21. .item {
  22. text-align: center;
  23. line-height: 100rpx ;
  24. }
  25. }
  26. }
  27. }
  28. }