@egovernments/digit-ui-health-css 0.2.130 → 0.2.132
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.
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
position: sticky;
|
|
15
15
|
z-index: 10;
|
|
16
16
|
left: 0rem;
|
|
17
|
-
background-color:
|
|
17
|
+
background-color: theme(digitv2.lightTheme.paper);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.rdt_TableRow:hover>.rdt_TableCell:first-of-type {
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
z-index: 12;
|
|
30
30
|
left: 0rem;
|
|
31
31
|
top: 0rem;
|
|
32
|
-
background-color:
|
|
32
|
+
background-color: theme(digitv2.lightTheme.background);
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.rdt_TableRow>.rdt_TableCell:nth-of-type(2) {
|
|
36
36
|
position: sticky;
|
|
37
37
|
z-index: 10;
|
|
38
38
|
left: 6.25rem;
|
|
39
|
-
background-color:
|
|
39
|
+
background-color: theme(digitv2.lightTheme.paper);
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
.rdt_TableRow:hover>.rdt_TableCell:nth-of-type(2) {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
z-index: 12;
|
|
52
52
|
left: 6.25rem;
|
|
53
53
|
top: 0rem;
|
|
54
|
-
background-color:
|
|
54
|
+
background-color: theme(digitv2.lightTheme.background);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
|
|
@@ -646,7 +646,7 @@
|
|
|
646
646
|
}
|
|
647
647
|
|
|
648
648
|
&.decrease {
|
|
649
|
-
color:
|
|
649
|
+
color: theme(digitv2.lightTheme.error-v2);
|
|
650
650
|
}
|
|
651
651
|
|
|
652
652
|
&.metric-card {
|
|
@@ -1156,7 +1156,7 @@
|
|
|
1156
1156
|
font-family: theme(digitv2.fontFamily.sans);
|
|
1157
1157
|
font-weight: theme(digitv2.fontWeight.bold);
|
|
1158
1158
|
font-size: 1.75rem;
|
|
1159
|
-
color:
|
|
1159
|
+
color: theme(digitv2.lightTheme.text-color-primary);
|
|
1160
1160
|
}
|
|
1161
1161
|
|
|
1162
1162
|
.digit-banner-sub-heading {
|
|
@@ -1333,7 +1333,48 @@
|
|
|
1333
1333
|
height: 2rem;
|
|
1334
1334
|
}
|
|
1335
1335
|
|
|
1336
|
-
.digit-heat-map-recenter{
|
|
1336
|
+
.digit-heat-map-recenter {
|
|
1337
1337
|
margin-bottom: 1.5rem;
|
|
1338
1338
|
margin-left: 1.5rem;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.digit-kibana-card {
|
|
1342
|
+
width: 100%;
|
|
1343
|
+
|
|
1344
|
+
h1 {
|
|
1345
|
+
margin: 0rem;
|
|
1346
|
+
margin-bottom: 1.5rem;
|
|
1347
|
+
color: theme(digitv2.lightTheme.text-color-primary);
|
|
1348
|
+
font-family: theme(digitv2.fontFamily.sans);
|
|
1349
|
+
font-style: theme(digitv2.fontStyle.normal);
|
|
1350
|
+
font-weight: theme(digitv2.fontWeight.bold);
|
|
1351
|
+
|
|
1352
|
+
@media (max-aspect-ratio: 9/16) {
|
|
1353
|
+
/* Media query for mobile */
|
|
1354
|
+
font-size: theme(digitv2.fontSize.heading-m.mobile);
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
|
|
1358
|
+
/* Media query for tablets */
|
|
1359
|
+
font-size: theme(digitv2.fontSize.heading-m.tablet);
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
@media (min-aspect-ratio: 3/4) {
|
|
1363
|
+
/* Media query for desktop */
|
|
1364
|
+
font-size: theme(digitv2.fontSize.heading-m.desktop);
|
|
1365
|
+
}
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.app-iframe-wrapper.digit-dss-kibana-iframe-wrapper {
|
|
1370
|
+
left: unset !important;
|
|
1371
|
+
top: unset !important;
|
|
1372
|
+
position: unset !important;
|
|
1373
|
+
height: 37.5rem;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.app-iframe.digit-dss-kibana-iframe {
|
|
1377
|
+
position: unset !important;
|
|
1378
|
+
height: 37.5rem !important;
|
|
1379
|
+
width: 100% !important;
|
|
1339
1380
|
}
|