status-record.scss 826 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. @import '../../../../themes/page.scss';
  2. /* module/health/pages/status-record/status-record.wxss */
  3. .wrapper {
  4. display: flex;
  5. $border: 1px solid #34FFC6;
  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. }
  31. }
  32. .col {
  33. font-size: 14px;
  34. }
  35. .col+.col {
  36. border-left: $border;
  37. }
  38. }
  39. }
  40. .highlight {
  41. color: #FD3F3F;
  42. }
  43. image {
  44. width: 100%;
  45. height: 100%;
  46. }