start-work.wxss 715 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* pages/progress/start-work.wxss */
  2. .application-list {
  3. width: 50%;
  4. height: 100vh;
  5. overflow: scroll;
  6. float: left;
  7. background-color: #fbfbfb;
  8. }
  9. .application-item {
  10. height: 84rpx;
  11. padding-left: 24rpx;
  12. border-bottom: 1px solid #ffffff;
  13. }
  14. .application-item-active {
  15. background-color: #ffffff;
  16. }
  17. .application-icon {
  18. width: 64rpx;
  19. height: 64rpx;
  20. margin-top: 10rpx;
  21. float: left;
  22. }
  23. .application-name {
  24. line-height: 84rpx;
  25. font-size: 24rpx;
  26. margin-left: 12rpx;
  27. }
  28. .process-list {
  29. width: 50%;
  30. height: 100vh;
  31. overflow: scroll;
  32. float: left;
  33. background-color: white;
  34. }
  35. .process-item {
  36. height: 84rpx;
  37. margin-left: 24rpx;
  38. }
  39. .process-name {
  40. line-height: 84rpx;
  41. font-size: 20rpx;
  42. }