健康同学微信公众号h5项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

trajectory.scss 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .calendar {
  2. position: relative;
  3. width: 100%;
  4. height: 500px;
  5. background-color: #fff;
  6. z-index: 999;
  7. .van-calendar {
  8. .van-calendar__header {
  9. box-shadow: unset;
  10. .van-calendar__header-title {
  11. display: none;
  12. }
  13. .van-calendar__month-title {
  14. display: none;
  15. @include colorAndFont(#333, 16);
  16. padding: 20px 0 10px;
  17. }
  18. .van-calendar__weekdays {
  19. span {
  20. @include colorAndFont(#666, 14);
  21. padding: 25px 0;
  22. }
  23. }
  24. }
  25. .van-calendar__month-title {
  26. @include colorAndFont(#666, 14);
  27. }
  28. .van-calendar__days {
  29. .van-calendar__day {
  30. @include colorAndFont(#666, 14);
  31. height: 35px;
  32. .van-calendar__selected-day {
  33. width: 27px;
  34. height: 27px;
  35. border-radius: 50%;
  36. }
  37. }
  38. .van-calendar__day--disabled {
  39. color: #c8c9cc;
  40. }
  41. }
  42. }
  43. }