@egovernments/digit-ui-health-css 0.3.16 → 0.3.17
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/dist/index.css +27 -1
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/pages/employee/index.scss +35 -0
package/package.json
CHANGED
|
@@ -1334,4 +1334,39 @@ tbody {
|
|
|
1334
1334
|
padding: 4px;
|
|
1335
1335
|
display: flex;
|
|
1336
1336
|
align-items: center;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
/* Custom styling for PGR Inbox date range field - targets the 3rd search field */
|
|
1340
|
+
.pgr-inbox-wrapper {
|
|
1341
|
+
.search-field-wrapper .digit-label-field-pair.digit-inbox-search-composer-label-pair.vertical:nth-child(3) {
|
|
1342
|
+
row-gap: 0.5rem !important;
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
/* Boundary dropdown container - increased row gap between dropdowns */
|
|
1347
|
+
.boundary-dropdown-container {
|
|
1348
|
+
display: flex;
|
|
1349
|
+
flex-direction: column;
|
|
1350
|
+
min-width: 100%;
|
|
1351
|
+
|
|
1352
|
+
.digit-text-input-field {
|
|
1353
|
+
margin-bottom: 1.5rem;
|
|
1354
|
+
min-width: 100%;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.comment-label {
|
|
1358
|
+
min-width: 80%;
|
|
1359
|
+
}
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
/* Add line separators between form sections in CreateComplaint form */
|
|
1363
|
+
.custom-form-complaints {
|
|
1364
|
+
.digit-card-section-header:not(:first-of-type) {
|
|
1365
|
+
border-top: 0.2rem solid #D6D5D5;
|
|
1366
|
+
padding-top: 1rem;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.digit-card-section-header {
|
|
1370
|
+
margin-bottom: 1.5rem;
|
|
1371
|
+
}
|
|
1337
1372
|
}
|