| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- @import "../../../../themes/t.cell.scss";
- @import "../../report-common.scss";
- @import "../../../../themes/card.scss";
- /* module/health/components/report-health-patient/report-health-patient.wxss */
- .card-body {
- .row+.row {
- margin-top: 8px;
- }
- }
- .patient-info-content {
- --td-cell-description-color: #fff;
- --td-cell-description-font-size: 12px;
- display: flex;
- flex-direction: row;
- align-items: center;
- font-size: 14px;
- .avatar {
- flex: none;
- margin-right: 8px;
- }
- .content {
- flex: auto;
- }
- .title {
- font-size: 16px;
- }
- }
- .patient-data-wrapper {
- .card-body {
- display: flex;
- flex-direction: row;
- align-items: center;
- .content-wrapper {
- flex: auto;
- }
- .image-wrapper {
- flex: none;
- width: 100px;
- height: 100px;
- margin-right: 8px;
- }
- }
- .row {
- display: flex;
- .col {
- flex: 1 1 50%;
- }
- }
- }
- .text-item+.text-item::before {
- content: ',';
- }
- .primary {
- color: #34A76B;
- }
- .tag + .tag {
- margin-left: 4px;
- }
|