@egovernments/digit-ui-health-css 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,110 @@
1
+ .digit-results-card-component {
2
+ gap: 1.5rem;
3
+ box-shadow: 0rem 0.063rem 0.331rem 0rem #00000026;
4
+ border-bottom-left-radius: 0rem;
5
+ border-bottom-right-radius: 0rem;
6
+
7
+ .digit-results-card-heading-tags-wrapper {
8
+ display: flex;
9
+ align-items: center;
10
+ justify-content: space-between;
11
+
12
+ .digit-results-card-heading {
13
+ color: theme(digitv2.lightTheme.primary-2);
14
+ font-family: theme(digitv2.fontFamily.sans);
15
+ font-style: theme(digitv2.fontStyle.normal);
16
+ font-weight: theme(digitv2.fontWeight.bold);
17
+ line-height: 1.14rem;
18
+
19
+ @media (max-aspect-ratio: 9/16) {
20
+ /* Media query for mobile */
21
+ font-size: theme(digitv2.fontSize.heading-m.mobile);
22
+ }
23
+
24
+ @media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
25
+ /* Media query for tablets */
26
+ font-size: theme(digitv2.fontSize.heading-m.tablet);
27
+ }
28
+
29
+ @media (min-aspect-ratio: 3/4) {
30
+ /* Media query for desktop */
31
+ font-size: theme(digitv2.fontSize.heading-m.desktop);
32
+ }
33
+ }
34
+
35
+ .digit-results-card-tags {
36
+ display: flex;
37
+ gap: 1rem;
38
+ }
39
+ }
40
+
41
+ .digit-results-card-content {
42
+ display: flex;
43
+ align-items: stretch;
44
+
45
+ .left-column,
46
+ .right-column {
47
+ flex: 1;
48
+ flex-direction: column;
49
+ gap: 1.5rem;
50
+ display: flex !important;
51
+ }
52
+
53
+ .right-column {
54
+ margin-left: 1.5rem;
55
+ }
56
+
57
+ .digit-divider {
58
+ width: 0rem;
59
+ border-color: #BFBFBF;
60
+ }
61
+ }
62
+ }
63
+
64
+ .digit-results-card-buttons {
65
+ padding: 1.5rem;
66
+ background: theme(digitv2.lightTheme.paper);
67
+ margin-top: -1.5rem;
68
+ box-shadow: 0rem 0rem 0.431rem 0rem #00000026;
69
+ border-bottom-right-radius: 0.5rem;
70
+ border-bottom-left-radius: 0.5rem;
71
+ display: flex;
72
+ justify-content: space-between;
73
+ align-items: center;
74
+
75
+
76
+ .digit-results-card-buttons-internal {
77
+ display: grid;
78
+ grid-auto-flow: column;
79
+ grid-auto-columns: 1fr;
80
+ gap: 1rem;
81
+ }
82
+ }
83
+
84
+ .digit-viewcard-field-pair {
85
+ &.digit-results-card-field-pair {
86
+ .digit-viewcard-label {
87
+ color: theme(digitv2.lightTheme.primary-2);
88
+ }
89
+
90
+ .digit-viewcard-value {
91
+ color: #787878;
92
+ }
93
+ }
94
+ }
95
+
96
+ .digit-viewcard-field-pair {
97
+ &.digit-results-status-card-field-pair {
98
+ align-items: center;
99
+ gap: 8.5rem;
100
+ flex-direction: unset;
101
+ .digit-viewcard-label {
102
+ color: theme(digitv2.lightTheme.primary-2);
103
+ width: unset;
104
+ }
105
+
106
+ .digit-viewcard-value {
107
+ color: #787878;
108
+ }
109
+ }
110
+ }