app.less 640 B

1234567891011121314151617181920212223242526272829303132
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. }
  5. button::after {
  6. border: none;
  7. }
  8. page {
  9. --overlay-background-color: rgba(0, 0, 0, 0.6);
  10. --search-background-color: #f4f4f4;
  11. --picker-cancel-action-color: #777777;
  12. --picker-confirm-action-color: #0AAF20;
  13. --picker-option-text-color: #000000;
  14. --picker-option-font-size: 16px;
  15. }
  16. .van-picker__cancel {
  17. font-size: var(--picker-option-font-size) !important;
  18. padding: 0 14rpx !important;
  19. }
  20. .van-picker__confirm {
  21. font-size: var(--picker-option-font-size) !important;
  22. padding: 0 14rpx !important;
  23. }
  24. .van-picker__toolbar {
  25. margin: 0 13px;
  26. border-bottom: 1px solid #F2F2F2;
  27. }