@tattvafoundation/upyog-css 1.0.19 → 1.0.21
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 +226 -56
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/CardBasedOptions.scss +2 -2
- package/src/components/CitizenHomeCard.scss +2 -6
- package/src/components/bmc.scss +230 -6
- package/src/components/body.scss +3 -4
- package/src/components/card.scss +6 -3
- package/src/components/navbar.scss +1 -1
- package/src/index.scss +4 -0
- package/src/pages/citizen/HomePageWrapper.scss +5 -9
- package/src/pages/employee/index.scss +4 -4
- package/src/pages/employee/login.scss +5 -1
package/package.json
CHANGED
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
|
|
52
52
|
@screen dt {
|
|
53
53
|
.CardBasedOptions {
|
|
54
|
-
width:
|
|
54
|
+
width: calc(50% - 16px);
|
|
55
55
|
padding: 0px !important;
|
|
56
56
|
height: 250px !important;
|
|
57
57
|
}
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
|
|
75
75
|
.citizen .ServicesSection .CardBasedOptions:nth-child(even) {
|
|
76
76
|
.employeeCustomCard {
|
|
77
|
-
background-image: url("https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/
|
|
77
|
+
background-image: url("https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/back1.jpg");
|
|
78
78
|
background-size: cover;
|
|
79
79
|
}
|
|
80
80
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.CitizenHomeCard {
|
|
2
2
|
|
|
3
|
-
@apply bg-white
|
|
3
|
+
@apply bg-white p-md mb-lg;
|
|
4
4
|
|
|
5
5
|
.header {
|
|
6
6
|
@apply flex font-bold text-heading-l text-text-primary justify-between pb-sm;
|
|
@@ -21,11 +21,8 @@
|
|
|
21
21
|
|
|
22
22
|
display: inline-block;
|
|
23
23
|
margin-bottom: 10px;
|
|
24
|
-
padding: 5px 8px !important;
|
|
25
24
|
background: #fdf5e2;
|
|
26
|
-
border-radius: 50px;
|
|
27
25
|
line-height: 17px;
|
|
28
|
-
border: 1px solid #d2b03a;
|
|
29
26
|
}
|
|
30
27
|
}
|
|
31
28
|
}
|
|
@@ -46,10 +43,9 @@
|
|
|
46
43
|
|
|
47
44
|
.CitizenHomeCard {
|
|
48
45
|
padding: 16px !important;
|
|
49
|
-
margin-right: 16px !important;
|
|
50
46
|
display: block !important;
|
|
51
47
|
box-shadow: rgb(50 50 93 / 18%) 0px 50px 100px -20px, rgb(0 0 0 / 16%) 0px 30px 60px -30px, rgb(10 37 64 / 17%) 0px -2px 6px 0px inset;
|
|
52
|
-
|
|
48
|
+
|
|
53
49
|
|
|
54
50
|
.header {
|
|
55
51
|
@apply pb-lg text-heading-l-dt;
|
package/src/components/bmc.scss
CHANGED
|
@@ -102,6 +102,37 @@
|
|
|
102
102
|
margin-bottom: 24px;
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
+
.mobile-CardWrapper {
|
|
106
|
+
display: flex;
|
|
107
|
+
justify-content: center;
|
|
108
|
+
align-items: center;
|
|
109
|
+
height: 100%;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.mobile-CardWrapper .card {
|
|
113
|
+
width: 510px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.CardBasedOptions,
|
|
117
|
+
.CitizenHomeCard {
|
|
118
|
+
transition: all linear 0.5s;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.CardBasedOptions:hover {
|
|
122
|
+
box-shadow: 0 10px 9px rgb(0 81 187 / 98%);
|
|
123
|
+
cursor: pointer;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.CitizenHomeCard:hover {
|
|
127
|
+
box-shadow: 0 10px 9px rgb(0 81 187 / 98%);
|
|
128
|
+
cursor: pointer;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.ChildOptionName a {
|
|
132
|
+
font-size: 14px;
|
|
133
|
+
color: #b08904;
|
|
134
|
+
}
|
|
135
|
+
|
|
105
136
|
/* Media Queries */
|
|
106
137
|
@media screen and (max-width: 768px) {
|
|
107
138
|
.line {
|
|
@@ -176,6 +207,12 @@
|
|
|
176
207
|
background-repeat: round;
|
|
177
208
|
}
|
|
178
209
|
|
|
210
|
+
.citizen-home-container-forLoginBack {
|
|
211
|
+
background-image: url("https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/CitizenBG.png");
|
|
212
|
+
background-size: cover;
|
|
213
|
+
margin: 0 !important;
|
|
214
|
+
}
|
|
215
|
+
|
|
179
216
|
.logo-ic {
|
|
180
217
|
background-image: url("https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/logo-bmc.png");
|
|
181
218
|
height: 80px;
|
|
@@ -195,6 +232,13 @@
|
|
|
195
232
|
position: absolute;
|
|
196
233
|
}
|
|
197
234
|
|
|
235
|
+
.scheme-back {
|
|
236
|
+
background-image: url("https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/scheme-banner.png");
|
|
237
|
+
height: 400px;
|
|
238
|
+
width: 100%;
|
|
239
|
+
background-size: cover !important;
|
|
240
|
+
}
|
|
241
|
+
|
|
198
242
|
.aadhaar-container {
|
|
199
243
|
text-align: center;
|
|
200
244
|
}
|
|
@@ -245,7 +289,7 @@
|
|
|
245
289
|
.bmc-card-button,
|
|
246
290
|
.bmc-card-button-cancel {
|
|
247
291
|
width: 147px;
|
|
248
|
-
height:
|
|
292
|
+
height: 36px;
|
|
249
293
|
outline: none;
|
|
250
294
|
color: white;
|
|
251
295
|
}
|
|
@@ -264,6 +308,23 @@
|
|
|
264
308
|
width: 174px;
|
|
265
309
|
}
|
|
266
310
|
|
|
311
|
+
.bmc-card-button,
|
|
312
|
+
.bmc-card-master-button {
|
|
313
|
+
transition: all linear 1s;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.bmc-card-button:hover {
|
|
317
|
+
background: #3255a7 !important;
|
|
318
|
+
border-radius: 50px;
|
|
319
|
+
box-shadow: 0 5px 10px 0px #2f3237;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.bmc-card-master-button:hover {
|
|
323
|
+
background: #3255a7 !important;
|
|
324
|
+
border-radius: 50px;
|
|
325
|
+
box-shadow: 0 5px 10px 0px #2f3237;
|
|
326
|
+
}
|
|
327
|
+
|
|
267
328
|
.bmc-radio-wrap {
|
|
268
329
|
margin-top: 8px;
|
|
269
330
|
margin-bottom: 24px;
|
|
@@ -642,7 +703,7 @@
|
|
|
642
703
|
.bmc-card-button-cancel {
|
|
643
704
|
background-color: #b1b4b6;
|
|
644
705
|
width: 147px;
|
|
645
|
-
height:
|
|
706
|
+
height: 36px;
|
|
646
707
|
color: "black";
|
|
647
708
|
outline: "none";
|
|
648
709
|
}
|
|
@@ -726,7 +787,7 @@
|
|
|
726
787
|
.bmc-card-button {
|
|
727
788
|
background-color: #d1b03f;
|
|
728
789
|
width: 147px;
|
|
729
|
-
height:
|
|
790
|
+
height: 36px;
|
|
730
791
|
color: #fff;
|
|
731
792
|
outline: none;
|
|
732
793
|
}
|
|
@@ -738,7 +799,7 @@
|
|
|
738
799
|
.bmc-card-master-button {
|
|
739
800
|
background-color: #5aae06;
|
|
740
801
|
width: 174px;
|
|
741
|
-
height:
|
|
802
|
+
height: 36px;
|
|
742
803
|
color: #fff;
|
|
743
804
|
outline: none;
|
|
744
805
|
}
|
|
@@ -1305,7 +1366,8 @@
|
|
|
1305
1366
|
/* For Small Screens (Mobile) */
|
|
1306
1367
|
@media screen and (max-width: 600px) {
|
|
1307
1368
|
.bmc-modal-content {
|
|
1308
|
-
width: 95%;
|
|
1369
|
+
width: 95%;
|
|
1370
|
+
/* Increase the width on small screens */
|
|
1309
1371
|
max-width: none;
|
|
1310
1372
|
padding: 10px;
|
|
1311
1373
|
}
|
|
@@ -1361,7 +1423,8 @@
|
|
|
1361
1423
|
gap: 1rem;
|
|
1362
1424
|
margin-top: 1rem;
|
|
1363
1425
|
flex-wrap: wrap;
|
|
1364
|
-
padding: 0 1rem;
|
|
1426
|
+
padding: 0 1rem;
|
|
1427
|
+
/* Add padding to prevent items from touching screen edges */
|
|
1365
1428
|
}
|
|
1366
1429
|
|
|
1367
1430
|
.bmc-pagination2-button {
|
|
@@ -1450,3 +1513,164 @@
|
|
|
1450
1513
|
content: url("https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/banner2forsmallscreen.png");
|
|
1451
1514
|
}
|
|
1452
1515
|
}
|
|
1516
|
+
|
|
1517
|
+
.bmc-links {
|
|
1518
|
+
display: block;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.CitizenHomeCard .bmc-links a {
|
|
1522
|
+
padding: 8px 0 !important;
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.bmc-main-heading {
|
|
1526
|
+
font-size: 23px;
|
|
1527
|
+
font-weight: bold;
|
|
1528
|
+
margin-left: 10px;
|
|
1529
|
+
color: #c9a33e;
|
|
1530
|
+
margin-bottom: 5px;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.bmc-links .linksWrapper a {
|
|
1534
|
+
transition: all linear 0.5s;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
.bmc-links .linksWrapper a:hover {
|
|
1538
|
+
background: #3255a7;
|
|
1539
|
+
color: #fff;
|
|
1540
|
+
font-size: 18px;
|
|
1541
|
+
box-shadow: 0 0 4px 4px #4f83be;
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
.mobile-CardWrapper .card {
|
|
1545
|
+
margin-top: -50px;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
.mobile-CardWrapper .card header,
|
|
1549
|
+
.mobile-CardWrapper .card p {
|
|
1550
|
+
text-align: center;
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
.mobile-CardWrapper .card button {
|
|
1554
|
+
margin: auto;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
.mobile-CardWrapper .card p {
|
|
1558
|
+
font-size: 16px;
|
|
1559
|
+
font-weight: 100;
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
.SideBarStatic {
|
|
1563
|
+
width: 60px;
|
|
1564
|
+
transition: all linear 0.5s;
|
|
1565
|
+
overflow: hidden;
|
|
1566
|
+
height: 100%;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
/* The expanded state of sidebar on hover */
|
|
1570
|
+
.drawer-desktop {
|
|
1571
|
+
width: 60px;
|
|
1572
|
+
transition: all linear 0.5s;
|
|
1573
|
+
height: 100%;
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
.drawer-desktop:hover {
|
|
1577
|
+
width: 200px;
|
|
1578
|
+
/* Sidebar expands on hover */
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
.drawer-desktop:hover .profile-section {
|
|
1582
|
+
display: block;
|
|
1583
|
+
/* Show profile when expanded */
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
.drawer-desktop .profile-section .name-Profile {
|
|
1587
|
+
display: none;
|
|
1588
|
+
/* Hide profile name when collapsed */
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
.drawer-desktop:hover .profile-section .name-Profile {
|
|
1592
|
+
display: block;
|
|
1593
|
+
/* Show profile name when expanded */
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.drawer-desktop .profile-section .loc-Profile {
|
|
1597
|
+
display: none;
|
|
1598
|
+
/* Hide profile location when collapsed */
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
.drawer-desktop:hover .profile-section .loc-Profile {
|
|
1602
|
+
display: block;
|
|
1603
|
+
/* Show profile location when expanded */
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
.drawer-desktop .profile-section .label-text {
|
|
1607
|
+
text-align: center;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
.SideBarStatic:hover {
|
|
1611
|
+
width: 200px;
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
.SideBarStatic:hover .drawer-desktop {
|
|
1615
|
+
width: 200px;
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.card p.message-text {
|
|
1619
|
+
font-size: 14px;
|
|
1620
|
+
font-weight: 100;
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
.scheme-back h3 {
|
|
1624
|
+
font-size: 45px;
|
|
1625
|
+
font-weight: bold;
|
|
1626
|
+
color: #fff;
|
|
1627
|
+
background: #b08904b5;
|
|
1628
|
+
padding: 10px 20px;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
.scheme-back {
|
|
1632
|
+
display: flex;
|
|
1633
|
+
align-items: center;
|
|
1634
|
+
justify-content: center;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.ChildOptionName a {
|
|
1638
|
+
transition: all linear 0.5s;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.ChildOptionName a:hover {
|
|
1642
|
+
font-size: 18px;
|
|
1643
|
+
color: rgb(0, 81, 187);
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
.bmc-mobile-card .card {
|
|
1647
|
+
background-color: rgb(255 255 255 / 76%) !important;
|
|
1648
|
+
padding-top: 40px;
|
|
1649
|
+
padding-bottom: 45px;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
button.submit-bar {
|
|
1653
|
+
transition: all linear 1s;
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
button.submit-bar:hover {
|
|
1657
|
+
background: #3255a7 !important;
|
|
1658
|
+
border-radius: 50px;
|
|
1659
|
+
box-shadow: 0 5px 10px 0px #2f3237;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
.checkbox-wrap .custom-checkbox,
|
|
1663
|
+
.checkbox-wrap .custom-checkbox-emp {
|
|
1664
|
+
width: 28px !important;
|
|
1665
|
+
height: 28px !important;
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
.checkbox-wrap .label {
|
|
1669
|
+
margin-left: 42px;
|
|
1670
|
+
line-height: 8px;
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.bmc-label-error {
|
|
1674
|
+
text-align: center;
|
|
1675
|
+
color: red;
|
|
1676
|
+
}
|
package/src/components/body.scss
CHANGED
|
@@ -11,8 +11,9 @@ body {
|
|
|
11
11
|
|
|
12
12
|
.navbar {
|
|
13
13
|
@apply text-white bg-secondary p-md w-full mb-md;
|
|
14
|
-
background: #
|
|
14
|
+
background: #faefcf !important;
|
|
15
15
|
color: #000 !important;
|
|
16
|
+
box-shadow: 0px 0px 7px 0px #c0c0c0b8;
|
|
16
17
|
|
|
17
18
|
img {
|
|
18
19
|
height: 24px;
|
|
@@ -123,9 +124,7 @@ body {
|
|
|
123
124
|
}
|
|
124
125
|
|
|
125
126
|
.input-otp-wrap,
|
|
126
|
-
.card-text-button {
|
|
127
|
-
text-align: left;
|
|
128
|
-
}
|
|
127
|
+
.card-text-button {}
|
|
129
128
|
}
|
|
130
129
|
}
|
|
131
130
|
}
|
package/src/components/card.scss
CHANGED
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.field-container {
|
|
60
|
-
@apply flex
|
|
60
|
+
@apply flex items-center;
|
|
61
61
|
/*@apply flex justify-center items-center;*/
|
|
62
62
|
}
|
|
63
63
|
|
|
@@ -140,7 +140,8 @@
|
|
|
140
140
|
margin-right: auto;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
.header-content {
|
|
143
|
+
.header-content {
|
|
144
|
+
}
|
|
144
145
|
|
|
145
146
|
.header-end {
|
|
146
147
|
margin-left: auto;
|
|
@@ -196,7 +197,9 @@
|
|
|
196
197
|
flex-direction: column;
|
|
197
198
|
|
|
198
199
|
.card-header {
|
|
199
|
-
|
|
200
|
+
font-size: 26px;
|
|
201
|
+
line-height: 56px;
|
|
202
|
+
color: #c6a32b;
|
|
200
203
|
}
|
|
201
204
|
|
|
202
205
|
.card-sub-header {
|
package/src/index.scss
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
margin-top: -11px;
|
|
3
3
|
|
|
4
4
|
.BannerWithSearch {
|
|
5
|
-
margin-bottom:
|
|
5
|
+
margin-bottom: 0px;
|
|
6
6
|
width: 100%;
|
|
7
7
|
@apply relative;
|
|
8
8
|
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
|
|
15
15
|
img {
|
|
16
16
|
|
|
17
|
-
@apply w-full
|
|
17
|
+
@apply w-full;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.ServicesSection {
|
|
22
22
|
@apply flex flex-wrap;
|
|
23
|
-
padding:
|
|
23
|
+
padding: 24px 15px 0 15px;
|
|
24
24
|
width: 100% !important;
|
|
25
25
|
float: left !important;
|
|
26
26
|
}
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
@screen dt {
|
|
29
29
|
.ServicesSection {
|
|
30
30
|
@apply flex flex-wrap;
|
|
31
|
-
padding:
|
|
31
|
+
padding: 24px 15px 0 15px;
|
|
32
32
|
width: 100%;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
width: 100%;
|
|
139
139
|
|
|
140
140
|
.BannerWithSearch {
|
|
141
|
-
margin-bottom:
|
|
141
|
+
margin-bottom: 0;
|
|
142
142
|
width: 100% !important;
|
|
143
143
|
|
|
144
144
|
.Search {
|
|
@@ -147,16 +147,12 @@
|
|
|
147
147
|
padding: 0 15px 0 15px;
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
-
img {
|
|
151
|
-
height: 20vw;
|
|
152
|
-
}
|
|
153
150
|
}
|
|
154
151
|
|
|
155
152
|
.WhatsAppBanner {
|
|
156
153
|
width: 100%;
|
|
157
154
|
|
|
158
155
|
img {
|
|
159
|
-
height: 20vw;
|
|
160
156
|
width: 100%;
|
|
161
157
|
}
|
|
162
158
|
}
|
|
@@ -196,8 +196,8 @@
|
|
|
196
196
|
|
|
197
197
|
.citizen {
|
|
198
198
|
.main {
|
|
199
|
-
padding-top:
|
|
200
|
-
min-height: calc(100vh -
|
|
199
|
+
padding-top: 60px;
|
|
200
|
+
min-height: calc(100vh - 45px);
|
|
201
201
|
display: flex !important;
|
|
202
202
|
}
|
|
203
203
|
}
|
|
@@ -594,8 +594,8 @@
|
|
|
594
594
|
.citizen {
|
|
595
595
|
.main {
|
|
596
596
|
width: 100%;
|
|
597
|
-
padding-top:
|
|
598
|
-
min-height: calc(100vh -
|
|
597
|
+
padding-top: 60px;
|
|
598
|
+
min-height: calc(100vh - 45px);
|
|
599
599
|
margin-bottom: 18px !important;
|
|
600
600
|
display: flex !important;
|
|
601
601
|
}
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
.employeeChangePassword .input-otp-wrap {
|
|
85
|
-
text-align: center;
|
|
85
|
+
text-align: center !important;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
.submit-bar {
|
|
@@ -314,4 +314,8 @@
|
|
|
314
314
|
|
|
315
315
|
.employeeForgotPassword {
|
|
316
316
|
z-index: 2;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.bmc-otp{
|
|
320
|
+
text-align: center !important;
|
|
317
321
|
}
|