@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
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
@import "./login.scss";
|
|
2
|
+
|
|
2
3
|
/* TODO: convert using tailwind */
|
|
3
4
|
.employee {
|
|
4
5
|
.breadcrumb {
|
|
5
6
|
@apply ml-sm mb-lg;
|
|
6
7
|
}
|
|
8
|
+
|
|
7
9
|
.ground-container {
|
|
8
10
|
margin-bottom: 56px;
|
|
9
11
|
margin-left: 0px;
|
|
10
12
|
@apply flex flex-col;
|
|
11
13
|
}
|
|
14
|
+
|
|
12
15
|
.card-home {
|
|
13
16
|
font-size: 16px;
|
|
14
17
|
padding: 0 0 16px 0;
|
|
@@ -16,10 +19,12 @@
|
|
|
16
19
|
display: inline-block;
|
|
17
20
|
margin: 8px auto;
|
|
18
21
|
}
|
|
22
|
+
|
|
19
23
|
.home-action-cards {
|
|
20
24
|
height: auto !important;
|
|
21
25
|
min-height: 263px;
|
|
22
26
|
}
|
|
27
|
+
|
|
23
28
|
.topbar {
|
|
24
29
|
position: fixed;
|
|
25
30
|
top: 0;
|
|
@@ -51,11 +56,11 @@
|
|
|
51
56
|
|
|
52
57
|
.right {
|
|
53
58
|
float: right;
|
|
54
|
-
margin-top:
|
|
59
|
+
margin-top: 0px;
|
|
55
60
|
|
|
56
61
|
.user-img-txt {
|
|
57
|
-
background: #
|
|
58
|
-
padding:
|
|
62
|
+
background: #d1b03f;
|
|
63
|
+
padding: 7px 15px;
|
|
59
64
|
border-radius: 50%;
|
|
60
65
|
color: white;
|
|
61
66
|
font-weight: 700;
|
|
@@ -67,56 +72,63 @@
|
|
|
67
72
|
padding-top: 88px;
|
|
68
73
|
}
|
|
69
74
|
|
|
70
|
-
.submit-bar header{
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
}
|
|
75
|
+
.submit-bar header {
|
|
76
|
+
height: 2rem !important;
|
|
77
|
+
line-height: 2rem !important;
|
|
78
|
+
}
|
|
74
79
|
|
|
75
80
|
.loginContainer {
|
|
76
81
|
padding-top: 88px;
|
|
77
82
|
position: relative;
|
|
78
83
|
}
|
|
79
84
|
|
|
80
|
-
.loginnn{
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
}
|
|
105
|
-
|
|
85
|
+
.loginnn {
|
|
86
|
+
position: relative;
|
|
87
|
+
max-width: 100%;
|
|
88
|
+
width: 100%;
|
|
89
|
+
min-width: 100%;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.loginnn .img {
|
|
93
|
+
position: absolute;
|
|
94
|
+
background-size: cover;
|
|
95
|
+
width: 100%;
|
|
96
|
+
max-width: 100%;
|
|
97
|
+
max-height: 100%;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.logoNiua {
|
|
101
|
+
display: flex;
|
|
102
|
+
width: 100%;
|
|
103
|
+
position: absolute;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.logoNiua .img {
|
|
107
|
+
width: 15%;
|
|
108
|
+
height: 15%;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.upyogLogo {
|
|
112
|
+
width: 100% !important;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.login-logo-wrapper {
|
|
106
116
|
min-width: 100%;
|
|
107
117
|
height: 100%;
|
|
108
118
|
position: absolute;
|
|
109
119
|
display: flex;
|
|
110
120
|
flex-direction: row;
|
|
111
|
-
}
|
|
112
|
-
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.loginConference {
|
|
113
124
|
position: relative;
|
|
114
125
|
height: 100%;
|
|
115
126
|
width: 100%;
|
|
116
127
|
font-weight: 700;
|
|
117
128
|
|
|
118
|
-
}
|
|
119
|
-
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.login-banner-wrapper {
|
|
120
132
|
position: relative;
|
|
121
133
|
color: white;
|
|
122
134
|
float: right;
|
|
@@ -126,7 +138,7 @@
|
|
|
126
138
|
margin-right: 2%;
|
|
127
139
|
text-align: right;
|
|
128
140
|
font-family: none;
|
|
129
|
-
}
|
|
141
|
+
}
|
|
130
142
|
|
|
131
143
|
.react-time-picker {
|
|
132
144
|
width: 100%;
|
|
@@ -156,26 +168,32 @@
|
|
|
156
168
|
padding-left: 8px;
|
|
157
169
|
}
|
|
158
170
|
}
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
171
|
+
|
|
172
|
+
#login-conference-table {
|
|
173
|
+
position: absolute;
|
|
174
|
+
z-index: 1;
|
|
175
|
+
width: 36vw;
|
|
176
|
+
height: 62vh;
|
|
177
|
+
margin-top: 20vh;
|
|
178
|
+
margin-left: 2vw;
|
|
166
179
|
}
|
|
167
|
-
|
|
180
|
+
|
|
181
|
+
.banner-slogan {
|
|
168
182
|
padding-top: 10%;
|
|
169
183
|
}
|
|
170
|
-
|
|
184
|
+
|
|
185
|
+
.psuedo-banner span {
|
|
171
186
|
color: #fdd049;
|
|
172
|
-
}
|
|
173
|
-
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.login-banner-wrapper .psuedo-banner {
|
|
174
190
|
font-size: 2.2rem;
|
|
175
191
|
}
|
|
176
|
-
|
|
192
|
+
|
|
193
|
+
.login-banner-wrapper .banner-slogan {
|
|
177
194
|
font-size: 1.5rem;
|
|
178
195
|
}
|
|
196
|
+
|
|
179
197
|
.citizen {
|
|
180
198
|
.main {
|
|
181
199
|
padding-top: 82px;
|
|
@@ -183,6 +201,7 @@
|
|
|
183
201
|
display: flex !important;
|
|
184
202
|
}
|
|
185
203
|
}
|
|
204
|
+
|
|
186
205
|
.citizen,
|
|
187
206
|
.employee {
|
|
188
207
|
.sidebar {
|
|
@@ -196,7 +215,7 @@
|
|
|
196
215
|
white-space: nowrap;
|
|
197
216
|
height: calc(100vh - 36px);
|
|
198
217
|
padding-bottom: 5rem;
|
|
199
|
-
background-
|
|
218
|
+
background-color: rgb(245, 234, 205);
|
|
200
219
|
background-blend-mode: lighten;
|
|
201
220
|
background-size: cover;
|
|
202
221
|
|
|
@@ -205,6 +224,7 @@
|
|
|
205
224
|
cursor: pointer;
|
|
206
225
|
display: flex;
|
|
207
226
|
align-items: center;
|
|
227
|
+
|
|
208
228
|
.tooltip {
|
|
209
229
|
margin-left: 16px;
|
|
210
230
|
}
|
|
@@ -215,33 +235,39 @@
|
|
|
215
235
|
height: 24px;
|
|
216
236
|
fill: #ffffff;
|
|
217
237
|
}
|
|
238
|
+
|
|
218
239
|
a {
|
|
219
240
|
display: flex;
|
|
220
241
|
}
|
|
242
|
+
|
|
221
243
|
.sidebar-link {
|
|
222
244
|
display: flex;
|
|
223
|
-
color: #
|
|
245
|
+
color: #b08905;
|
|
224
246
|
justify-content: space-between;
|
|
225
247
|
align-items: center;
|
|
226
248
|
padding: 20px;
|
|
227
249
|
font-size: 14px;
|
|
250
|
+
|
|
228
251
|
&.active {
|
|
229
|
-
color: #
|
|
252
|
+
color: #b08905 !important;
|
|
253
|
+
|
|
254
|
+
border-right: 4px solid #b08905;
|
|
230
255
|
|
|
231
|
-
border-right: 4px solid #a82227;
|
|
232
256
|
svg {
|
|
233
|
-
fill: #
|
|
257
|
+
fill: #b08905 !important;
|
|
234
258
|
}
|
|
235
259
|
}
|
|
260
|
+
|
|
236
261
|
.employee-search-input {
|
|
237
262
|
border: none;
|
|
238
263
|
outline: none;
|
|
239
|
-
background-color: rgba(0, 0, 0, 0);
|
|
240
264
|
margin-left: 13px;
|
|
241
265
|
}
|
|
266
|
+
|
|
242
267
|
.custom-link {
|
|
243
268
|
.tooltip {
|
|
244
269
|
margin-left: 16px;
|
|
270
|
+
|
|
245
271
|
span {
|
|
246
272
|
margin-left: unset !important;
|
|
247
273
|
left: unset !important;
|
|
@@ -250,67 +276,86 @@
|
|
|
250
276
|
}
|
|
251
277
|
|
|
252
278
|
svg {
|
|
253
|
-
fill: #
|
|
279
|
+
fill: #b08905 !important;
|
|
254
280
|
width: 21px;
|
|
255
281
|
height: 21px;
|
|
256
282
|
}
|
|
257
283
|
|
|
258
284
|
&:hover {
|
|
259
|
-
color: #
|
|
260
|
-
background-color:
|
|
285
|
+
color: #fff !important;
|
|
286
|
+
background-color: rgb(202 170 63 / 76%);
|
|
261
287
|
|
|
262
288
|
cursor: pointer;
|
|
289
|
+
|
|
263
290
|
svg {
|
|
264
|
-
fill: #
|
|
291
|
+
fill: #fff !important;
|
|
265
292
|
}
|
|
266
293
|
}
|
|
294
|
+
|
|
267
295
|
.search-icon-wrapper {
|
|
268
296
|
svg {
|
|
269
|
-
fill: #
|
|
297
|
+
fill: #d1b03f !important;
|
|
270
298
|
width: 21px;
|
|
271
299
|
height: 21px;
|
|
300
|
+
|
|
272
301
|
path {
|
|
273
|
-
fill: #
|
|
302
|
+
fill: #d1b03f !important;
|
|
274
303
|
}
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
input {
|
|
311
|
+
color: #d1b03f;
|
|
275
312
|
}
|
|
276
313
|
}
|
|
277
314
|
}
|
|
315
|
+
|
|
278
316
|
.dropdown-link {
|
|
279
317
|
height: 40px;
|
|
280
318
|
display: flex;
|
|
281
319
|
margin-left: 40px;
|
|
282
320
|
align-items: center;
|
|
283
321
|
text-decoration: none;
|
|
284
|
-
color: #
|
|
322
|
+
color: #d1b03f;
|
|
285
323
|
font-size: 14px;
|
|
324
|
+
|
|
286
325
|
.actions {
|
|
287
326
|
.tooltiptext {
|
|
288
327
|
left: unset;
|
|
289
328
|
right: 1%;
|
|
290
329
|
}
|
|
291
330
|
}
|
|
331
|
+
|
|
292
332
|
svg {
|
|
293
333
|
width: 20px;
|
|
294
334
|
height: 20px;
|
|
295
335
|
fill: #ffffff;
|
|
296
336
|
}
|
|
337
|
+
|
|
297
338
|
&:hover {
|
|
298
|
-
color: #
|
|
299
|
-
background-color:
|
|
339
|
+
color: #fff !important;
|
|
340
|
+
background-color: rgb(202 170 63 / 76%);
|
|
300
341
|
cursor: pointer;
|
|
342
|
+
|
|
301
343
|
svg {
|
|
302
344
|
fill: #fe7a51 !important;
|
|
303
345
|
}
|
|
304
346
|
}
|
|
347
|
+
|
|
305
348
|
&.active {
|
|
306
|
-
color: #
|
|
349
|
+
color: #b08905 !important;
|
|
350
|
+
|
|
351
|
+
border-right: 4px solid #b08905;
|
|
307
352
|
|
|
308
|
-
border-right: 4px solid #a82227;
|
|
309
353
|
svg {
|
|
310
|
-
fill: #
|
|
354
|
+
fill: #b08905 !important;
|
|
311
355
|
}
|
|
312
356
|
}
|
|
313
357
|
}
|
|
358
|
+
|
|
314
359
|
span {
|
|
315
360
|
margin-left: 16px;
|
|
316
361
|
text-overflow: ellipsis;
|
|
@@ -413,6 +458,7 @@
|
|
|
413
458
|
.sidebar {
|
|
414
459
|
margin-top: 54px;
|
|
415
460
|
min-width: 200px;
|
|
461
|
+
|
|
416
462
|
.actions {
|
|
417
463
|
display: flex;
|
|
418
464
|
align-items: center;
|
|
@@ -422,29 +468,35 @@
|
|
|
422
468
|
}
|
|
423
469
|
|
|
424
470
|
.link {
|
|
425
|
-
|
|
471
|
+
color: #b08905;
|
|
472
|
+
cursor: pointer;
|
|
426
473
|
|
|
427
474
|
:hover {
|
|
428
|
-
|
|
475
|
+
color: #0066ff
|
|
429
476
|
}
|
|
430
477
|
}
|
|
431
478
|
|
|
432
|
-
.RightMostTopBarOptions{
|
|
479
|
+
.RightMostTopBarOptions {
|
|
433
480
|
@apply flex float-right;
|
|
434
481
|
display: flex;
|
|
435
|
-
|
|
482
|
+
|
|
483
|
+
.EventNotificationWrapper {
|
|
436
484
|
@apply relative cursor-pointer;
|
|
437
|
-
|
|
485
|
+
|
|
486
|
+
span {
|
|
438
487
|
top: -10px;
|
|
439
488
|
right: -10px;
|
|
440
489
|
@apply absolute bg-error h-5 w-5 rounded-full text-center;
|
|
490
|
+
|
|
441
491
|
p {
|
|
442
492
|
line-height: 20px;
|
|
443
493
|
}
|
|
444
494
|
}
|
|
445
495
|
}
|
|
496
|
+
|
|
446
497
|
.select-wrap {
|
|
447
498
|
margin-bottom: unset;
|
|
499
|
+
|
|
448
500
|
svg {
|
|
449
501
|
fill: #ffffff;
|
|
450
502
|
}
|
|
@@ -485,33 +537,39 @@
|
|
|
485
537
|
margin: auto !important;
|
|
486
538
|
}
|
|
487
539
|
|
|
488
|
-
.mb-50{
|
|
540
|
+
.mb-50 {
|
|
489
541
|
margin-bottom: 50px;
|
|
490
542
|
}
|
|
491
|
-
|
|
543
|
+
|
|
544
|
+
.mb-25 {
|
|
492
545
|
margin-bottom: 25px;
|
|
493
546
|
}
|
|
547
|
+
|
|
494
548
|
@media (min-width: 640px) {
|
|
495
549
|
.employee {
|
|
496
550
|
.ground-container {
|
|
497
551
|
margin-left: 0px !important;
|
|
498
552
|
@apply block ml-md;
|
|
499
553
|
}
|
|
554
|
+
|
|
500
555
|
.breadcrumb {
|
|
501
556
|
@apply mb-lg;
|
|
502
557
|
margin-left: 0;
|
|
503
558
|
}
|
|
559
|
+
|
|
504
560
|
.card-home {
|
|
505
561
|
width: 270px;
|
|
506
562
|
margin-right: 10px;
|
|
507
563
|
margin-bottom: 10px;
|
|
508
564
|
}
|
|
565
|
+
|
|
509
566
|
.card-home-hrms {
|
|
510
567
|
width: 405px;
|
|
511
568
|
padding: 0px;
|
|
512
569
|
margin-right: 16px;
|
|
513
570
|
margin-bottom: 16px;
|
|
514
571
|
}
|
|
572
|
+
|
|
515
573
|
.main {
|
|
516
574
|
display: flex;
|
|
517
575
|
flex-direction: column;
|
|
@@ -519,6 +577,7 @@
|
|
|
519
577
|
margin-left: 64px;
|
|
520
578
|
width: calc(100%-83px);
|
|
521
579
|
}
|
|
580
|
+
|
|
522
581
|
.citizen-home-container {
|
|
523
582
|
display: flex;
|
|
524
583
|
flex-direction: unset !important;
|
|
@@ -527,9 +586,11 @@
|
|
|
527
586
|
padding-top: 58px;
|
|
528
587
|
}
|
|
529
588
|
}
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
589
|
+
|
|
590
|
+
#main-img {
|
|
591
|
+
content: url("https://in-egov-assets.s3.ap-south-1.amazonaws.com/images/employee-login.png");
|
|
592
|
+
}
|
|
593
|
+
|
|
533
594
|
.citizen {
|
|
534
595
|
.main {
|
|
535
596
|
width: 100%;
|
|
@@ -539,87 +600,102 @@
|
|
|
539
600
|
display: flex !important;
|
|
540
601
|
}
|
|
541
602
|
|
|
542
|
-
.center-container {
|
|
543
|
-
}
|
|
603
|
+
.center-container {}
|
|
544
604
|
}
|
|
545
|
-
|
|
546
|
-
}
|
|
547
605
|
|
|
548
|
-
@media only screen and (max-width:950px){
|
|
549
|
-
#main-img{
|
|
550
|
-
content:url("https://i.postimg.cc/9Q7jT6Dd/Banner-Image-2.png");
|
|
551
|
-
}
|
|
552
|
-
#login-conference-table{
|
|
553
|
-
position:relative;
|
|
554
|
-
z-index:1;
|
|
555
|
-
width:75%;
|
|
556
|
-
height:115%;
|
|
557
|
-
margin:12%;
|
|
558
|
-
margin-top:25%
|
|
559
606
|
}
|
|
560
|
-
|
|
607
|
+
|
|
608
|
+
@media only screen and (max-width:950px) {
|
|
609
|
+
#main-img {
|
|
610
|
+
content: url("https://i.postimg.cc/9Q7jT6Dd/Banner-Image-2.png");
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
#login-conference-table {
|
|
614
|
+
position: relative;
|
|
615
|
+
z-index: 1;
|
|
616
|
+
width: 75%;
|
|
617
|
+
height: 115%;
|
|
618
|
+
margin: 12%;
|
|
619
|
+
margin-top: 25%
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.loginConference {
|
|
561
623
|
position: absolute;
|
|
562
624
|
height: 100%;
|
|
563
625
|
width: 100%;
|
|
564
626
|
font-weight: 700;
|
|
565
627
|
display: flex;
|
|
566
628
|
flex-direction: column;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
}
|
|
572
|
-
.psuedo-banner{
|
|
573
|
-
font-size: 4vw;
|
|
574
|
-
}
|
|
575
|
-
.banner-slogan{
|
|
576
|
-
font-size: 3.5vw;
|
|
577
|
-
}
|
|
578
|
-
}
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.employee .login-banner-wrapper {
|
|
632
|
+
padding-top: 0vh;
|
|
579
633
|
|
|
580
|
-
|
|
634
|
+
}
|
|
581
635
|
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
}
|
|
636
|
+
.psuedo-banner {
|
|
637
|
+
font-size: 4vw;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.banner-slogan {
|
|
641
|
+
font-size: 3.5vw;
|
|
642
|
+
}
|
|
590
643
|
}
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
644
|
+
|
|
645
|
+
@media screen and (min-width:768) {
|
|
646
|
+
|
|
647
|
+
#login-conference-table {
|
|
648
|
+
position: absolute;
|
|
649
|
+
z-index: 1;
|
|
650
|
+
width: 40%;
|
|
651
|
+
height: 30%;
|
|
652
|
+
margin: 12%;
|
|
653
|
+
margin-top: 25%
|
|
654
|
+
}
|
|
602
655
|
}
|
|
603
|
-
|
|
656
|
+
|
|
657
|
+
@media only screen and (max-width:500px) {
|
|
658
|
+
#main-img {
|
|
659
|
+
content: url("https://i.postimg.cc/9Q7jT6Dd/Banner-Image-2.png");
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
#login-conference-table {
|
|
663
|
+
position: relative;
|
|
664
|
+
z-index: 1;
|
|
665
|
+
width: 75%;
|
|
666
|
+
height: 80%;
|
|
667
|
+
margin: 12%;
|
|
668
|
+
margin-top: 25%
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.loginConference {
|
|
604
672
|
position: absolute;
|
|
605
673
|
height: 100%;
|
|
606
674
|
width: 100%;
|
|
607
675
|
font-weight: 700;
|
|
608
676
|
display: flex;
|
|
609
677
|
flex-direction: column;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.employee .psuedo-banner {
|
|
681
|
+
font-size: 1.2rem;
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.employee .banner-slogan {
|
|
685
|
+
font-size: 0.8rem;
|
|
686
|
+
}
|
|
610
687
|
}
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
}
|
|
618
|
-
@media only screen and (min-width:300px)
|
|
619
|
-
{
|
|
620
|
-
.employee .card-home{
|
|
621
|
-
height: 220px;
|
|
622
|
-
box-shadow: #32325d14 0px 50px 100px -20px, rgb(0 0 0 / 18%) 0px 30px 60px -30px, #0a254038 0px -2px 6px 0px inset;
|
|
623
|
-
border-radius: 12px;
|
|
688
|
+
|
|
689
|
+
@media only screen and (min-width:300px) {
|
|
690
|
+
.employee .card-home {
|
|
691
|
+
height: 220px;
|
|
692
|
+
box-shadow: #32325d14 0px 50px 100px -20px, rgb(0 0 0 / 18%) 0px 30px 60px -30px, #0a254038 0px -2px 6px 0px inset;
|
|
693
|
+
border-radius: 12px;
|
|
694
|
+
}
|
|
624
695
|
}
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
.actions.search-icon-wrapper svg:hover {
|
|
700
|
+
fill: #fff !important;
|
|
625
701
|
}
|