| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- @import "../../../../themes/t.cell.scss";
- @import "../../report-common.scss";
- @import "../../../../themes/card.scss";
- /* module/health/components/card-analysis/card-analysis-content.wxss */
- .talbel-wrapper {
- $border: 1px solid#999;
- margin-top: 12px;
- border: $border;
- border-radius: 8px;
- .tr {
- display: flex;
- flex-direction: row;
- align-items: center;
- &+.tr {
- border-top: $border;
- }
- &.exception .td:nth-child(2) {
- color: #FF611B;
- }
- &.invalid .td:nth-child(2) {
- color: #aaa;
- }
- }
- .th {
- color: #fff;
- font-weight: 600;
- }
- .th,
- .td {
- // display: flex;
- text-align: center;
- word-break: break-all;
- white-space: pre-wrap;
- &:nth-child(1) {
- flex: 0 0 100px;
- }
- &:nth-child(2) {
- flex: auto;
- border-left: $border;
- border-right: $border;
- }
- &:nth-child(3) {
- flex: 0 0 100px;
- }
- }
- }
- .picture-wrapper {
- display: flex;
- flex-direction: row;
- justify-content: center;
- image {
- margin: 6px;
- width: 128px;
- height: 128px;
- }
- }
|