report-health-patient.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. @import "../../../../themes/t.cell.scss";
  2. @import "../../report-common.scss";
  3. @import "../../../../themes/card.scss";
  4. /* module/health/components/report-health-patient/report-health-patient.wxss */
  5. .card-body {
  6. .row+.row {
  7. margin-top: 8px;
  8. }
  9. }
  10. .patient-info-content {
  11. --td-cell-description-color: #fff;
  12. --td-cell-description-font-size: 12px;
  13. display: flex;
  14. flex-direction: row;
  15. align-items: center;
  16. font-size: 14px;
  17. .avatar {
  18. flex: none;
  19. margin-right: 8px;
  20. }
  21. .content {
  22. flex: auto;
  23. }
  24. .title {
  25. font-size: 16px;
  26. }
  27. }
  28. .patient-data-wrapper {
  29. .card-body {
  30. display: flex;
  31. flex-direction: row;
  32. align-items: center;
  33. .content-wrapper {
  34. flex: auto;
  35. }
  36. .image-wrapper {
  37. flex: none;
  38. width: 100px;
  39. height: 100px;
  40. margin-right: 8px;
  41. }
  42. }
  43. .row {
  44. display: flex;
  45. .col {
  46. flex: 1 1 50%;
  47. }
  48. }
  49. }
  50. .text-item+.text-item::before {
  51. content: ',';
  52. }
  53. .primary {
  54. color: #34A76B;
  55. }
  56. .tag + .tag {
  57. margin-left: 4px;
  58. }