@tattvafoundation/upyog-css 1.0.15 → 1.0.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 +409 -191
- package/dist/index.min.css +1 -1
- package/img/back1.jpg +0 -0
- package/img/back2.jpg +0 -0
- package/img/banner.png +0 -0
- package/img/banner2.png +0 -0
- package/img/bmc_receipt.png +0 -0
- package/img/login-back.png +0 -0
- package/img/logo-bmc.png +0 -0
- package/img/scheme-banner.png +0 -0
- package/package.json +2 -2
- package/src/components/CardBasedOptions.scss +92 -69
- package/src/components/CitizenHomeCard.scss +57 -45
- package/src/components/bmc.scss +207 -111
- package/src/components/body.scss +17 -3
- package/src/components/buttons.scss +5 -3
- package/src/components/card.scss +21 -14
- package/src/components/deonar.scss +159 -1
- package/src/components/languageSelector.scss +7 -2
- package/src/components/navbar.scss +51 -11
- package/src/components/selectdropdown.scss +2 -2
- package/src/index.scss +3 -3
- package/src/pages/citizen/HomePageWrapper.scss +33 -8
- package/src/pages/employee/inbox.scss +104 -34
- package/src/pages/employee/index.scss +216 -140
- package/src/pages/employee/login.scss +114 -57
- package/img/Free-Silai-Machine-Yojna-1-jpg.jpeg +0 -0
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
/* Styles for screen widths below 768px */
|
|
3
3
|
@media (max-width: 768px) {
|
|
4
4
|
|
|
5
|
+
.deonar-security{
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-wrap: wrap;
|
|
8
|
+
}
|
|
9
|
+
.deonar-security-card{
|
|
10
|
+
width: 100% !important;
|
|
11
|
+
}
|
|
12
|
+
.deonar-token-gen{
|
|
13
|
+
flex-wrap: wrap;
|
|
14
|
+
}
|
|
15
|
+
.deonar-input-gen{
|
|
16
|
+
flex: none !important;
|
|
17
|
+
width: 100%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
5
21
|
.deonar-scrollable-table{
|
|
6
22
|
display: flex !important;
|
|
7
23
|
}
|
|
@@ -36,6 +52,18 @@
|
|
|
36
52
|
grid-column: 1 / -1;
|
|
37
53
|
}
|
|
38
54
|
}
|
|
55
|
+
|
|
56
|
+
@media (min-width: 1024px) {
|
|
57
|
+
.deonar-token-gen{
|
|
58
|
+
flex-wrap: wrap;
|
|
59
|
+
}
|
|
60
|
+
.deonar-input-gen{
|
|
61
|
+
flex: none !important;
|
|
62
|
+
width: 100%;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
}
|
|
66
|
+
|
|
39
67
|
@media (max-width: 1280px) {
|
|
40
68
|
.deonar-scrollable-table{
|
|
41
69
|
display: block;
|
|
@@ -95,6 +123,7 @@
|
|
|
95
123
|
|
|
96
124
|
.deonar-modal-body {
|
|
97
125
|
margin-bottom: 20px;
|
|
126
|
+
|
|
98
127
|
p {
|
|
99
128
|
font-size: 16px;
|
|
100
129
|
}
|
|
@@ -186,7 +215,8 @@
|
|
|
186
215
|
}
|
|
187
216
|
|
|
188
217
|
.deonar-btn-confirm {
|
|
189
|
-
background-color: #
|
|
218
|
+
background-color: #d1b03f;
|
|
219
|
+
/* Primary button color */
|
|
190
220
|
color: white;
|
|
191
221
|
}
|
|
192
222
|
|
|
@@ -199,3 +229,131 @@
|
|
|
199
229
|
.deonar-btn-cancel:hover {
|
|
200
230
|
opacity: 0.9; /* Slight opacity change on hover */
|
|
201
231
|
}
|
|
232
|
+
|
|
233
|
+
.bmc-receipt-watermark {
|
|
234
|
+
background-image: url("../img/bmc_receipt.png"); /* Adjust the path if necessary */
|
|
235
|
+
background-size: contain; /* Or 'cover', depending on how you want the image scaled */
|
|
236
|
+
background-repeat: no-repeat;
|
|
237
|
+
width: 100%; /* Match the container's width */
|
|
238
|
+
height: 100%; /* Match the container's height */
|
|
239
|
+
opacity: 0.1; /* Light transparency to give a watermark effect */
|
|
240
|
+
position: absolute;
|
|
241
|
+
top: 0;
|
|
242
|
+
left: 0;
|
|
243
|
+
z-index: -1; /* Ensure it doesn't overlap the receipt content */
|
|
244
|
+
pointer-events: none; /* Prevent interaction with the watermark */
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
/**************** edit table component ****************/
|
|
248
|
+
|
|
249
|
+
.bmc-edit-count-input {
|
|
250
|
+
width: 60px;
|
|
251
|
+
padding: 4px;
|
|
252
|
+
border: 1px solid #ccc;
|
|
253
|
+
border-radius: 4px;
|
|
254
|
+
text-align: center;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.bmc-action-buttons {
|
|
258
|
+
display: flex;
|
|
259
|
+
align-items: center;
|
|
260
|
+
gap: 8px;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.bmc-edit-btn,
|
|
264
|
+
.bmc-save-btn,
|
|
265
|
+
.bmc-cancel-btn {
|
|
266
|
+
padding: 4px 8px;
|
|
267
|
+
border-radius: 4px;
|
|
268
|
+
cursor: pointer;
|
|
269
|
+
border: none;
|
|
270
|
+
font-size: 14px;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.bmc-edit-btn {
|
|
274
|
+
background-color: #1976d2;
|
|
275
|
+
color: white;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.bmc-save-btn {
|
|
279
|
+
background-color: #4caf50;
|
|
280
|
+
color: white;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.bmc-cancel-btn {
|
|
284
|
+
background-color: #f44336;
|
|
285
|
+
color: white;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.bmc-remove-icon {
|
|
289
|
+
cursor: pointer;
|
|
290
|
+
margin-left: 10px;
|
|
291
|
+
display: inline-flex;
|
|
292
|
+
align-items: center;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.bmc-count-adjuster {
|
|
296
|
+
display: flex;
|
|
297
|
+
flex-direction: column;
|
|
298
|
+
gap: 8px;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.bmc-count-info {
|
|
302
|
+
display: flex;
|
|
303
|
+
gap: 16px;
|
|
304
|
+
font-size: 14px;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.bmc-count-input-group {
|
|
308
|
+
display: flex;
|
|
309
|
+
gap: 8px;
|
|
310
|
+
align-items: center;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.bmc-count-input {
|
|
314
|
+
width: 80px;
|
|
315
|
+
padding: 4px 8px;
|
|
316
|
+
border: 1px solid #ccc;
|
|
317
|
+
border-radius: 4px;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.bmc-count-summary {
|
|
321
|
+
display: flex;
|
|
322
|
+
align-items: center;
|
|
323
|
+
gap: 12px;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.bmc-count-display {
|
|
327
|
+
font-size: 14px;
|
|
328
|
+
color: #666;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.bmc-adjust-btn,
|
|
332
|
+
.bmc-apply-btn,
|
|
333
|
+
.bmc-cancel-btn {
|
|
334
|
+
padding: 4px 8px;
|
|
335
|
+
border-radius: 4px;
|
|
336
|
+
border: none;
|
|
337
|
+
cursor: pointer;
|
|
338
|
+
font-size: 14px;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.bmc-adjust-btn {
|
|
342
|
+
background-color: #1976d2;
|
|
343
|
+
color: white;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.bmc-apply-btn {
|
|
347
|
+
background-color: #4caf50;
|
|
348
|
+
color: white;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.bmc-cancel-btn {
|
|
352
|
+
background-color: #f44336;
|
|
353
|
+
color: white;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.bmc-adjust-btn:disabled {
|
|
357
|
+
background-color: #ccc;
|
|
358
|
+
cursor: not-allowed;
|
|
359
|
+
}
|
|
@@ -5,20 +5,25 @@
|
|
|
5
5
|
.language-selector div:not(:first-child) {
|
|
6
6
|
margin-left: 10px;
|
|
7
7
|
}
|
|
8
|
+
|
|
8
9
|
.bannerCard .language-button-container button {
|
|
9
10
|
width: 6.2rem;
|
|
10
11
|
height: 2.5rem;
|
|
11
12
|
}
|
|
13
|
+
|
|
12
14
|
.bannerCard .customBtn {
|
|
13
15
|
border-color: #505a5f;
|
|
14
16
|
}
|
|
17
|
+
|
|
15
18
|
.bannerCard .customBtn:focus {
|
|
16
19
|
outline: none;
|
|
17
20
|
}
|
|
21
|
+
|
|
18
22
|
.bannerCard .customBtn-selected {
|
|
19
23
|
border-color: transparent;
|
|
20
|
-
background-color: #
|
|
24
|
+
background-color: #d1b03f !important;
|
|
21
25
|
}
|
|
26
|
+
|
|
22
27
|
.bannerCard .bannerHeader p {
|
|
23
28
|
font-size: 19px;
|
|
24
|
-
}
|
|
29
|
+
}
|
|
@@ -8,12 +8,15 @@
|
|
|
8
8
|
min-width: 78px;
|
|
9
9
|
height: 24px;
|
|
10
10
|
}
|
|
11
|
+
|
|
11
12
|
.nav {
|
|
12
13
|
display: flex;
|
|
13
14
|
justify-content: space-between;
|
|
14
15
|
}
|
|
16
|
+
|
|
15
17
|
.nav-wrapper {
|
|
16
18
|
display: flex;
|
|
19
|
+
|
|
17
20
|
@media (min-width: 780px) {
|
|
18
21
|
.hamburger-span {
|
|
19
22
|
display: none;
|
|
@@ -36,7 +39,7 @@
|
|
|
36
39
|
flex-direction: column;
|
|
37
40
|
align-items: center;
|
|
38
41
|
padding-top: 30px;
|
|
39
|
-
background-color:
|
|
42
|
+
background-color: transparent;
|
|
40
43
|
|
|
41
44
|
img {
|
|
42
45
|
width: 89px;
|
|
@@ -48,6 +51,7 @@
|
|
|
48
51
|
.label-text {
|
|
49
52
|
color: #767676;
|
|
50
53
|
}
|
|
54
|
+
|
|
51
55
|
&.name-Profile {
|
|
52
56
|
.label-text {
|
|
53
57
|
letter-spacing: 0.6px;
|
|
@@ -57,6 +61,7 @@
|
|
|
57
61
|
}
|
|
58
62
|
}
|
|
59
63
|
}
|
|
64
|
+
|
|
60
65
|
.profile-divider {
|
|
61
66
|
border-top: 1px solid #d6d5d4;
|
|
62
67
|
margin-left: 20px;
|
|
@@ -71,6 +76,7 @@
|
|
|
71
76
|
position: relative;
|
|
72
77
|
min-height: 1px;
|
|
73
78
|
overflow: auto;
|
|
79
|
+
|
|
74
80
|
.menu-item {
|
|
75
81
|
border: 10px;
|
|
76
82
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
@@ -87,6 +93,7 @@
|
|
|
87
93
|
min-height: 48px;
|
|
88
94
|
white-space: initial;
|
|
89
95
|
background: none;
|
|
96
|
+
|
|
90
97
|
.icon {
|
|
91
98
|
display: block;
|
|
92
99
|
color: rgb(117, 117, 117);
|
|
@@ -96,27 +103,33 @@
|
|
|
96
103
|
float: left;
|
|
97
104
|
margin-top: 12px;
|
|
98
105
|
}
|
|
99
|
-
|
|
106
|
+
|
|
107
|
+
.edit-btn-ico {
|
|
100
108
|
height: 17px;
|
|
101
109
|
width: 17px;
|
|
102
110
|
margin-top: 16px;
|
|
103
111
|
}
|
|
104
|
-
|
|
112
|
+
|
|
113
|
+
.icon+.menu-label {
|
|
105
114
|
margin-left: 36px;
|
|
106
115
|
text-overflow: ellipsis;
|
|
107
116
|
white-space: nowrap;
|
|
108
117
|
}
|
|
109
118
|
}
|
|
119
|
+
|
|
110
120
|
.sidebar-list {
|
|
111
121
|
padding-right: 16px;
|
|
112
122
|
padding-left: 16px;
|
|
123
|
+
|
|
113
124
|
&.active {
|
|
114
|
-
border-left: 5px solid #
|
|
125
|
+
border-left: 5px solid #b08905;
|
|
126
|
+
|
|
115
127
|
.menu-label {
|
|
116
|
-
color: #
|
|
128
|
+
color: #b08905;
|
|
117
129
|
}
|
|
130
|
+
|
|
118
131
|
.icon {
|
|
119
|
-
fill: #
|
|
132
|
+
fill: #b08905;
|
|
120
133
|
}
|
|
121
134
|
}
|
|
122
135
|
|
|
@@ -124,10 +137,12 @@
|
|
|
124
137
|
cursor: pointer;
|
|
125
138
|
display: flex;
|
|
126
139
|
flex-direction: column;
|
|
140
|
+
|
|
127
141
|
.sidebar-link {
|
|
128
142
|
display: flex;
|
|
129
143
|
justify-content: space-between;
|
|
130
144
|
align-items: center;
|
|
145
|
+
|
|
131
146
|
svg {
|
|
132
147
|
width: 21px;
|
|
133
148
|
height: 21px;
|
|
@@ -135,6 +150,7 @@
|
|
|
135
150
|
fill: rgb(117, 117, 117);
|
|
136
151
|
}
|
|
137
152
|
}
|
|
153
|
+
|
|
138
154
|
.actions {
|
|
139
155
|
display: flex;
|
|
140
156
|
align-items: center;
|
|
@@ -148,6 +164,7 @@
|
|
|
148
164
|
overflow: hidden;
|
|
149
165
|
text-overflow: ellipsis;
|
|
150
166
|
}
|
|
167
|
+
|
|
151
168
|
input {
|
|
152
169
|
border: none;
|
|
153
170
|
outline: none;
|
|
@@ -163,12 +180,14 @@
|
|
|
163
180
|
.actions {
|
|
164
181
|
display: flex;
|
|
165
182
|
padding: 1em;
|
|
183
|
+
|
|
166
184
|
svg {
|
|
167
185
|
width: 21px;
|
|
168
186
|
height: 21px;
|
|
169
187
|
color: rgb(117, 117, 117);
|
|
170
188
|
fill: rgb(117, 117, 117);
|
|
171
189
|
}
|
|
190
|
+
|
|
172
191
|
span {
|
|
173
192
|
color: #5f5c62;
|
|
174
193
|
}
|
|
@@ -177,6 +196,13 @@
|
|
|
177
196
|
}
|
|
178
197
|
|
|
179
198
|
.drawer-desktop {
|
|
199
|
+
background-color: rgb(245, 234, 205);
|
|
200
|
+
position: fixed;
|
|
201
|
+
top: 0;
|
|
202
|
+
bottom: 0;
|
|
203
|
+
padding-top: 80px;
|
|
204
|
+
width: 190px;
|
|
205
|
+
|
|
180
206
|
.menu-item {
|
|
181
207
|
border: 10px;
|
|
182
208
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
@@ -193,6 +219,7 @@
|
|
|
193
219
|
min-height: 48px;
|
|
194
220
|
white-space: initial;
|
|
195
221
|
background: none;
|
|
222
|
+
|
|
196
223
|
.icon {
|
|
197
224
|
display: block;
|
|
198
225
|
color: rgb(117, 117, 117);
|
|
@@ -202,30 +229,36 @@
|
|
|
202
229
|
float: left;
|
|
203
230
|
margin-top: 12px;
|
|
204
231
|
}
|
|
232
|
+
|
|
205
233
|
.edit-btn-ico {
|
|
206
234
|
height: 17px;
|
|
207
235
|
width: 17px;
|
|
208
236
|
margin-top: 16px;
|
|
209
237
|
}
|
|
210
|
-
|
|
238
|
+
|
|
239
|
+
.icon+.menu-label {
|
|
211
240
|
margin-left: 36px;
|
|
212
241
|
overflow: hidden;
|
|
213
242
|
text-overflow: ellipsis;
|
|
214
243
|
white-space: nowrap;
|
|
215
244
|
}
|
|
216
245
|
}
|
|
246
|
+
|
|
217
247
|
@media (min-width: 780px) {
|
|
218
248
|
.sidebar-list {
|
|
219
249
|
padding-right: 16px;
|
|
220
250
|
padding-left: 16px;
|
|
251
|
+
|
|
221
252
|
&.active {
|
|
222
|
-
border-left: 5px solid #
|
|
253
|
+
border-left: 5px solid #b08905;
|
|
223
254
|
padding-left: 11px;
|
|
255
|
+
|
|
224
256
|
.menu-label {
|
|
225
|
-
color: #
|
|
257
|
+
color: #b08905;
|
|
226
258
|
}
|
|
259
|
+
|
|
227
260
|
.icon {
|
|
228
|
-
fill: #
|
|
261
|
+
fill: #b08905;
|
|
229
262
|
}
|
|
230
263
|
}
|
|
231
264
|
|
|
@@ -233,22 +266,26 @@
|
|
|
233
266
|
cursor: pointer;
|
|
234
267
|
display: flex;
|
|
235
268
|
flex-direction: column;
|
|
269
|
+
|
|
236
270
|
.sidebar-link {
|
|
237
271
|
display: flex;
|
|
238
272
|
justify-content: space-between;
|
|
239
273
|
align-items: center;
|
|
274
|
+
|
|
240
275
|
svg {
|
|
241
276
|
width: 21px;
|
|
242
277
|
height: 21px;
|
|
243
278
|
color: rgb(117, 117, 117);
|
|
244
279
|
fill: rgb(117, 117, 117);
|
|
245
280
|
}
|
|
281
|
+
|
|
246
282
|
.actions {
|
|
247
283
|
.tooltip {
|
|
248
284
|
margin-left: 16px;
|
|
249
285
|
}
|
|
250
286
|
}
|
|
251
287
|
}
|
|
288
|
+
|
|
252
289
|
.actions {
|
|
253
290
|
display: flex;
|
|
254
291
|
align-items: center;
|
|
@@ -270,12 +307,14 @@
|
|
|
270
307
|
.actions {
|
|
271
308
|
display: flex;
|
|
272
309
|
padding: 1em;
|
|
310
|
+
|
|
273
311
|
svg {
|
|
274
312
|
width: 21px;
|
|
275
313
|
height: 21px;
|
|
276
314
|
color: rgb(117, 117, 117);
|
|
277
315
|
fill: rgb(117, 117, 117);
|
|
278
316
|
}
|
|
317
|
+
|
|
279
318
|
span {
|
|
280
319
|
color: #5f5c62;
|
|
281
320
|
}
|
|
@@ -302,7 +341,8 @@
|
|
|
302
341
|
|
|
303
342
|
.digit-footer {
|
|
304
343
|
@apply flex h-4 mb-sm;
|
|
344
|
+
|
|
305
345
|
img {
|
|
306
346
|
@apply mr-sm;
|
|
307
347
|
}
|
|
308
|
-
}
|
|
348
|
+
}
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
.select {
|
|
28
28
|
@apply relative block w-full h-10 border border-solid border-input-border;
|
|
29
29
|
&:hover {
|
|
30
|
-
|
|
30
|
+
border: 1px solid #b08905;
|
|
31
31
|
}
|
|
32
32
|
input[type="text"] {
|
|
33
33
|
width: calc(100% - 32px);
|
|
@@ -196,4 +196,4 @@
|
|
|
196
196
|
|
|
197
197
|
.employee-select-wrap .select img, .employee-select-wrap .select svg{
|
|
198
198
|
margin-top: 2px;
|
|
199
|
-
}
|
|
199
|
+
}
|
package/src/index.scss
CHANGED
|
@@ -250,7 +250,7 @@
|
|
|
250
250
|
fill: #a82227;
|
|
251
251
|
}
|
|
252
252
|
|
|
253
|
-
color: #
|
|
253
|
+
color: #d1b03f;
|
|
254
254
|
|
|
255
255
|
cursor: pointer;
|
|
256
256
|
font-weight: 500;
|
|
@@ -451,7 +451,7 @@ input[type="number"] {
|
|
|
451
451
|
|
|
452
452
|
input {
|
|
453
453
|
&:hover {
|
|
454
|
-
|
|
454
|
+
border: 1px solid #b08905;
|
|
455
455
|
}
|
|
456
456
|
}
|
|
457
457
|
}
|
|
@@ -771,7 +771,7 @@ input[type="number"] {
|
|
|
771
771
|
}
|
|
772
772
|
|
|
773
773
|
.icon-banner-employee svg {
|
|
774
|
-
background-color: #
|
|
774
|
+
background-color: #d1b03f !important;
|
|
775
775
|
width: 40px;
|
|
776
776
|
height: 40px;
|
|
777
777
|
}
|
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
.HomePageWrapper {
|
|
2
|
-
margin-top: -
|
|
2
|
+
margin-top: -11px;
|
|
3
3
|
|
|
4
4
|
.BannerWithSearch {
|
|
5
5
|
margin-bottom: 40px;
|
|
6
6
|
width: 100%;
|
|
7
7
|
@apply relative;
|
|
8
|
+
|
|
8
9
|
.Search {
|
|
9
10
|
width: calc(100% - 32px);
|
|
10
11
|
bottom: -18px;
|
|
11
12
|
@apply mx-md absolute;
|
|
12
13
|
}
|
|
14
|
+
|
|
13
15
|
img {
|
|
14
|
-
|
|
16
|
+
|
|
15
17
|
@apply w-full object-cover;
|
|
16
18
|
}
|
|
17
19
|
}
|
|
@@ -19,6 +21,8 @@
|
|
|
19
21
|
.ServicesSection {
|
|
20
22
|
@apply flex flex-wrap;
|
|
21
23
|
padding: 40px 15px 0 15px;
|
|
24
|
+
width: 100% !important;
|
|
25
|
+
float: left !important;
|
|
22
26
|
}
|
|
23
27
|
|
|
24
28
|
@screen dt {
|
|
@@ -32,25 +36,31 @@
|
|
|
32
36
|
.WhatsNewSection {
|
|
33
37
|
@apply m-sm;
|
|
34
38
|
padding: 0 15px;
|
|
39
|
+
|
|
35
40
|
.headSection {
|
|
36
41
|
@apply flex mb-sm justify-between;
|
|
42
|
+
|
|
37
43
|
h2 {
|
|
38
44
|
@apply text-heading-s font-bold text-text-primary pl-sm;
|
|
39
45
|
}
|
|
46
|
+
|
|
40
47
|
p {
|
|
41
48
|
@apply text-link text-primary-main font-medium cursor-pointer;
|
|
42
49
|
}
|
|
43
50
|
}
|
|
51
|
+
|
|
44
52
|
@media (min-width: 780px) {
|
|
45
53
|
padding: 0 15px;
|
|
46
54
|
}
|
|
47
55
|
}
|
|
48
56
|
|
|
49
|
-
.WhatsAppBanner{
|
|
57
|
+
.WhatsAppBanner {
|
|
50
58
|
width: 100%;
|
|
51
59
|
padding: 0px 20px 0px 20px;
|
|
52
60
|
margin: auto;
|
|
53
61
|
cursor: pointer;
|
|
62
|
+
clear: both;
|
|
63
|
+
|
|
54
64
|
img {
|
|
55
65
|
width: 100%;
|
|
56
66
|
}
|
|
@@ -60,10 +70,11 @@
|
|
|
60
70
|
@media (min-width: 780px) {
|
|
61
71
|
.SideBarStatic {
|
|
62
72
|
width: 219px;
|
|
63
|
-
background:
|
|
73
|
+
background: transparent;
|
|
64
74
|
margin-top: -24px;
|
|
65
75
|
}
|
|
66
76
|
}
|
|
77
|
+
|
|
67
78
|
@media (max-width: 780px) {
|
|
68
79
|
.SideBarStatic {
|
|
69
80
|
width: 219px;
|
|
@@ -85,30 +96,37 @@
|
|
|
85
96
|
@media (min-width: 780px) {
|
|
86
97
|
width: calc(100% - 219px);
|
|
87
98
|
}
|
|
99
|
+
|
|
88
100
|
margin-top: -25px;
|
|
101
|
+
|
|
89
102
|
img {
|
|
90
103
|
height: 33vw;
|
|
91
|
-
background: linear-gradient(#000000
|
|
104
|
+
background: linear-gradient(#000000, #000000);
|
|
92
105
|
@apply w-full object-cover;
|
|
93
106
|
}
|
|
107
|
+
|
|
94
108
|
h1 {
|
|
95
109
|
position: absolute;
|
|
96
110
|
top: 100px;
|
|
97
111
|
left: 21px;
|
|
98
112
|
@apply text-heading-xl text-white font-bold;
|
|
99
113
|
}
|
|
114
|
+
|
|
100
115
|
.moduleLinkHomePageBackButton {
|
|
101
116
|
border: none;
|
|
102
117
|
top: 76px;
|
|
118
|
+
|
|
103
119
|
svg {
|
|
104
120
|
fill: #ffffff;
|
|
105
121
|
}
|
|
122
|
+
|
|
106
123
|
@apply absolute text-white text-heading-s ml-md;
|
|
107
124
|
}
|
|
108
125
|
}
|
|
109
126
|
|
|
110
127
|
.moduleLinkHomePageModuleLinks {
|
|
111
128
|
@apply mt-md;
|
|
129
|
+
|
|
112
130
|
.CitizenHomeCard {
|
|
113
131
|
.header {
|
|
114
132
|
@apply hidden;
|
|
@@ -119,14 +137,17 @@
|
|
|
119
137
|
@screen dt {
|
|
120
138
|
.HomePageWrapper {
|
|
121
139
|
width: 100%;
|
|
140
|
+
|
|
122
141
|
.BannerWithSearch {
|
|
123
142
|
margin-bottom: 56px;
|
|
124
143
|
width: 100% !important;
|
|
144
|
+
|
|
125
145
|
.Search {
|
|
126
146
|
width: 100%;
|
|
127
147
|
margin: 0;
|
|
128
148
|
padding: 0 15px 0 15px;
|
|
129
149
|
}
|
|
150
|
+
|
|
130
151
|
img {
|
|
131
152
|
height: 20vw;
|
|
132
153
|
}
|
|
@@ -134,22 +155,26 @@
|
|
|
134
155
|
|
|
135
156
|
.WhatsAppBanner {
|
|
136
157
|
width: 100%;
|
|
137
|
-
|
|
158
|
+
|
|
159
|
+
img {
|
|
138
160
|
height: 20vw;
|
|
139
161
|
width: 100%;
|
|
140
162
|
}
|
|
141
163
|
}
|
|
142
164
|
|
|
143
165
|
}
|
|
166
|
+
|
|
144
167
|
.moduleLinkHomePage {
|
|
145
168
|
img {
|
|
146
169
|
min-width: 100vw;
|
|
147
170
|
height: 20vw;
|
|
148
171
|
}
|
|
172
|
+
|
|
149
173
|
h1 {
|
|
150
174
|
top: calc(10vw + 40px);
|
|
151
175
|
left: 15.8rem;
|
|
152
176
|
}
|
|
177
|
+
|
|
153
178
|
.moduleLinkHomePageBackButton {
|
|
154
179
|
top: calc(10vw + 16px);
|
|
155
180
|
@apply ml-md;
|
|
@@ -158,6 +183,6 @@
|
|
|
158
183
|
|
|
159
184
|
.moduleLinkHomePageModuleLinks {
|
|
160
185
|
max-width: unset;
|
|
161
|
-
width:100%
|
|
186
|
+
width: 100%
|
|
162
187
|
}
|
|
163
|
-
}
|
|
188
|
+
}
|