@egovernments/digit-ui-health-css 0.3.21 → 0.3.22
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 +41 -1
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/pages/employee/index.scss +30 -0
package/package.json
CHANGED
|
@@ -1422,3 +1422,33 @@ tbody {
|
|
|
1422
1422
|
position: relative;
|
|
1423
1423
|
right: 2.3rem;
|
|
1424
1424
|
}
|
|
1425
|
+
|
|
1426
|
+
/* PGR Response ActionBar Button Styling */
|
|
1427
|
+
.pgr-response-btn {
|
|
1428
|
+
box-sizing: border-box;
|
|
1429
|
+
display: flex;
|
|
1430
|
+
flex-direction: row;
|
|
1431
|
+
justify-content: center;
|
|
1432
|
+
align-items: center;
|
|
1433
|
+
padding: 0.5rem 1.5rem;
|
|
1434
|
+
gap: 0.5rem;
|
|
1435
|
+
width: 20.813rem;
|
|
1436
|
+
height: 2.5rem;
|
|
1437
|
+
flex: none;
|
|
1438
|
+
order: 0;
|
|
1439
|
+
flex-grow: 0;
|
|
1440
|
+
margin: 0.5rem;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
.create-complaint-btn {
|
|
1444
|
+
background: #FFFFFF;
|
|
1445
|
+
border: 1px solid #C84C0E;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.back-btn {
|
|
1449
|
+
background: #C84C0E;
|
|
1450
|
+
border: 1px solid #C84C0E;
|
|
1451
|
+
margin-right: 6rem;
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
/* PGR Response ActionBar Styling - buttons at opposite ends */
|