status-record.scss 864 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. @import '../../../../themes/page.scss';
  2. /* module/health/pages/status-record/status-record.wxss */
  3. .wrapper {
  4. display: flex;
  5. $border: 1px solid #DCDCDC;
  6. &.portrait {
  7. flex-direction: row;
  8. flex-wrap: nowrap;
  9. border-top: $border;
  10. border-bottom: $border;
  11. .header {
  12. flex: none;
  13. border-right: $border;
  14. .row {
  15. width: 90px;
  16. }
  17. }
  18. .scrollable {
  19. flex: auto;
  20. }
  21. .row {
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. width: 120px;
  26. padding: 4px;
  27. box-sizing: border-box;
  28. &.odd {
  29. // background-color: #113B38;
  30. background-color: #F1F2F5;
  31. }
  32. }
  33. .col {
  34. font-size: 14px;
  35. }
  36. .col+.col {
  37. border-left: $border;
  38. }
  39. }
  40. }
  41. .highlight {
  42. color: #FD3F3F;
  43. }
  44. image {
  45. width: 100%;
  46. height: 100%;
  47. }