@selco/installation-ui-css 1.0.0

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.
Files changed (161) hide show
  1. package/CHANGELOG.md +163 -0
  2. package/README.md +62 -0
  3. package/dist/index.css +14290 -0
  4. package/dist/index.min.css +6 -0
  5. package/img/browser-icon.png +0 -0
  6. package/img/m_seva_white_logo.png +0 -0
  7. package/img/mseva-demo.png +0 -0
  8. package/package.json +68 -0
  9. package/src/components/CardBasedOptions.scss +46 -0
  10. package/src/components/CitizenHomeCard.scss +60 -0
  11. package/src/components/EllipsisMenu.scss +17 -0
  12. package/src/components/EventCalendarView.scss +10 -0
  13. package/src/components/FAQ.scss +64 -0
  14. package/src/components/OnGroundEventCard.scss +72 -0
  15. package/src/components/PageBasedInput.scss +42 -0
  16. package/src/components/PopupHeadingLabel.scss +15 -0
  17. package/src/components/PropertySearchForm.scss +58 -0
  18. package/src/components/SearchForm.scss +56 -0
  19. package/src/components/SearchOnRadioButton.scss +10 -0
  20. package/src/components/StandaloneSearchBar.scss +10 -0
  21. package/src/components/TimeLine.scss +68 -0
  22. package/src/components/WhatsNewCard.scss +13 -0
  23. package/src/components/actionLink.scss +3 -0
  24. package/src/components/actionbar.scss +97 -0
  25. package/src/components/bannercomponents.scss +136 -0
  26. package/src/components/body.scss +144 -0
  27. package/src/components/buttons.scss +101 -0
  28. package/src/components/card.scss +391 -0
  29. package/src/components/cardHeaderWithOptions.scss +14 -0
  30. package/src/components/changeLanguage.scss +3 -0
  31. package/src/components/charts.scss +186 -0
  32. package/src/components/checkbox.scss +53 -0
  33. package/src/components/checkpoint.scss +64 -0
  34. package/src/components/citizenInfoLabel.scss +14 -0
  35. package/src/components/custombtn.scss +11 -0
  36. package/src/components/datatable.scss +134 -0
  37. package/src/components/datewrap.scss +21 -0
  38. package/src/components/detailscard.scss +6 -0
  39. package/src/components/detailscontainer.scss +13 -0
  40. package/src/components/filters.scss +98 -0
  41. package/src/components/grey.scss +3 -0
  42. package/src/components/hoc/InboxComposer.scss +115 -0
  43. package/src/components/hoc/index.scss +1 -0
  44. package/src/components/howItWorks.scss +71 -0
  45. package/src/components/imageviewer.scss +33 -0
  46. package/src/components/inboxv2/InboxLinks.scss +59 -0
  47. package/src/components/inboxv2/horizontalNav.scss +224 -0
  48. package/src/components/inboxv2/inboxSearch.scss +116 -0
  49. package/src/components/inboxv2/inboxSearchComposer.scss +169 -0
  50. package/src/components/inboxv2/index.scss +5 -0
  51. package/src/components/inboxv2/searchComponentTable.scss +45 -0
  52. package/src/components/info-banner.scss +35 -0
  53. package/src/components/inputotp.scss +15 -0
  54. package/src/components/keynote.scss +27 -0
  55. package/src/components/languageSelector.scss +23 -0
  56. package/src/components/loader.scss +96 -0
  57. package/src/components/loaderWithGap.scss +45 -0
  58. package/src/components/map.scss +30 -0
  59. package/src/components/menu.scss +0 -0
  60. package/src/components/metricsTable.scss +29 -0
  61. package/src/components/multiLink.scss +88 -0
  62. package/src/components/multiSelectDropdown.scss +78 -0
  63. package/src/components/navbar.scss +321 -0
  64. package/src/components/plusMinus.scss +15 -0
  65. package/src/components/popup.scss +16 -0
  66. package/src/components/radiobtn.scss +46 -0
  67. package/src/components/ratingstar.scss +33 -0
  68. package/src/components/roundedLabel.scss +10 -0
  69. package/src/components/searchAction.scss +20 -0
  70. package/src/components/sectionalDropdown.scss +43 -0
  71. package/src/components/selectdropdown.scss +175 -0
  72. package/src/components/sidebar.scss +141 -0
  73. package/src/components/staticDynamicMessages.scss +107 -0
  74. package/src/components/staticSideBar.scss +27 -0
  75. package/src/components/statushighlight.scss +17 -0
  76. package/src/components/submiterrors.scss +11 -0
  77. package/src/components/summary.scss +29 -0
  78. package/src/components/table.scss +201 -0
  79. package/src/components/tag.scss +27 -0
  80. package/src/components/telephone.scss +17 -0
  81. package/src/components/textfields.scss +96 -0
  82. package/src/components/toast.scss +31 -0
  83. package/src/components/toggleSwitch.scss +41 -0
  84. package/src/components/topbar.scss +153 -0
  85. package/src/components/uploadcomponents.scss +102 -0
  86. package/src/digitv2/components/ErrorMessage.scss +6 -0
  87. package/src/digitv2/components/FormComposerV2.scss +126 -0
  88. package/src/digitv2/components/actionLinkV2.scss +7 -0
  89. package/src/digitv2/components/actionbarV2.scss +108 -0
  90. package/src/digitv2/components/appContainerV2.scss +55 -0
  91. package/src/digitv2/components/backButtonV2.scss +26 -0
  92. package/src/digitv2/components/bannerV2.scss +120 -0
  93. package/src/digitv2/components/bodyContainerV2.scss +39 -0
  94. package/src/digitv2/components/breakLineV2.scss +7 -0
  95. package/src/digitv2/components/cardV2.scss +385 -0
  96. package/src/digitv2/components/checkboxV2.scss +61 -0
  97. package/src/digitv2/components/checkpointV2.scss +71 -0
  98. package/src/digitv2/components/collapseAndExpandGroups.scss +60 -0
  99. package/src/digitv2/components/dateWrapV2.scss +12 -0
  100. package/src/digitv2/components/displayPhotosV2.scss +33 -0
  101. package/src/digitv2/components/headerV2.scss +6 -0
  102. package/src/digitv2/components/infoBannerV2.scss +37 -0
  103. package/src/digitv2/components/keynoteV2.scss +35 -0
  104. package/src/digitv2/components/loaderV2.scss +90 -0
  105. package/src/digitv2/components/mobileNumberV2.scss +33 -0
  106. package/src/digitv2/components/multiSelectDropdownV2.scss +92 -0
  107. package/src/digitv2/components/noresultsfoundV2.scss +11 -0
  108. package/src/digitv2/components/otpInputV2.scss +15 -0
  109. package/src/digitv2/components/popUpV2.scss +24 -0
  110. package/src/digitv2/components/radiobtnV2.scss +51 -0
  111. package/src/digitv2/components/ratingV2.scss +33 -0
  112. package/src/digitv2/components/selectdropdownV2.scss +180 -0
  113. package/src/digitv2/components/tagV2.scss +28 -0
  114. package/src/digitv2/components/telephoneV2.scss +18 -0
  115. package/src/digitv2/components/textInputV2.scss +123 -0
  116. package/src/digitv2/components/textareaV2.scss +11 -0
  117. package/src/digitv2/components/uploadFileV2.scss +146 -0
  118. package/src/digitv2/index.scss +166 -0
  119. package/src/digitv2/pages/employee/index.scss +35 -0
  120. package/src/digitv2/pages/employee/workbench.scss +1112 -0
  121. package/src/digitv2/typography.scss +241 -0
  122. package/src/index.scss +868 -0
  123. package/src/pages/citizen/CitizenEngagementNotificationWrapper.scss +8 -0
  124. package/src/pages/citizen/DocumentList.scss +305 -0
  125. package/src/pages/citizen/Events.scss +47 -0
  126. package/src/pages/citizen/HomePageWrapper.scss +158 -0
  127. package/src/pages/citizen/SurveyList.scss +22 -0
  128. package/src/pages/citizen/citizenDocument.scss +22 -0
  129. package/src/pages/citizen/container.scss +19 -0
  130. package/src/pages/citizen/payment/payment-type.scss +3 -0
  131. package/src/pages/citizen/updatePropertyNumber.scss +46 -0
  132. package/src/pages/employee/EmployeeLogin.scss +7 -0
  133. package/src/pages/employee/cardfix.scss +13 -0
  134. package/src/pages/employee/container.scss +72 -0
  135. package/src/pages/employee/dss.scss +266 -0
  136. package/src/pages/employee/form-fields.scss +24 -0
  137. package/src/pages/employee/iframe.scss +66 -0
  138. package/src/pages/employee/inbox.scss +593 -0
  139. package/src/pages/employee/index.scss +613 -0
  140. package/src/pages/employee/login.scss +351 -0
  141. package/src/pages/employee/oldMobileInbox.scss +5 -0
  142. package/src/pages/employee/popupmodule.scss +34 -0
  143. package/src/pages/employee/response.scss +3 -0
  144. package/src/pages/employee/sandbox.scss +1293 -0
  145. package/src/pages/employee/scroll-table.scss +119 -0
  146. package/src/pages/employee/searchaction.scss +14 -0
  147. package/src/pages/employee/surveys.scss +273 -0
  148. package/src/pages/employee/tooltip.scss +36 -0
  149. package/src/pages/employee/updateNumber.scss +13 -0
  150. package/svg/arrowdown.svg +1 -0
  151. package/svg/arrowleft.svg +1 -0
  152. package/svg/calendar.svg +1 -0
  153. package/svg/camera.svg +4 -0
  154. package/svg/check.svg +4 -0
  155. package/svg/close.svg +4 -0
  156. package/svg/error.svg +4 -0
  157. package/svg/error2.svg +5 -0
  158. package/svg/searchicon.svg +4 -0
  159. package/svg/starempty.svg +4 -0
  160. package/svg/starfilled.svg +5 -0
  161. package/svg/success.svg +4 -0
@@ -0,0 +1,613 @@
1
+ @import "./login.scss";
2
+ /* TODO: convert using tailwind */
3
+ .employee {
4
+ .breadcrumb {
5
+ @apply ml-sm mb-lg;
6
+ }
7
+ .ground-container {
8
+ margin-bottom: 56px;
9
+ @apply flex flex-col;
10
+ }
11
+ .card-home {
12
+ font-size: 16px;
13
+ padding: 0 0 16px 0;
14
+ width: 92vw;
15
+ display: inline-block;
16
+ margin: 8px auto;
17
+ }
18
+ .home-action-cards {
19
+ height: auto !important;
20
+ min-height: 263px;
21
+ }
22
+ .topbar {
23
+ position: fixed;
24
+ top: 0;
25
+ width: 100%;
26
+ padding: 16px 24px;
27
+ background: white;
28
+ box-shadow: rgba(0, 0, 0, 0.24) 0 1px 4px;
29
+ z-index: 9999;
30
+
31
+ img {
32
+ display: inline;
33
+
34
+ &.city {
35
+ margin-right: 8px;
36
+ height: 48px;
37
+ width: 48px;
38
+ }
39
+
40
+ &.state {
41
+ height: 20px;
42
+ max-height: 20px;
43
+ width: auto;
44
+ }
45
+ }
46
+
47
+ .ulb {
48
+ font-weight: bold;
49
+ }
50
+
51
+ .right {
52
+ float: right;
53
+ margin-top: 12px;
54
+
55
+ .user-img-txt {
56
+ background: theme(colors.primary.main);
57
+ padding: 10px 15px;
58
+ border-radius: 50%;
59
+ color: white;
60
+ font-weight: 700;
61
+ }
62
+ }
63
+ }
64
+
65
+ .main {
66
+ padding-top: 88px;
67
+ }
68
+
69
+ .loginContainer {
70
+ padding-top: 88px;
71
+ }
72
+
73
+ .react-time-picker {
74
+ width: 100%;
75
+ }
76
+
77
+ .react-time-picker__wrapper {
78
+ border: 1px solid theme(colors.inputBorder);
79
+ }
80
+
81
+ .react-time-picker__clock {
82
+ display: none;
83
+ }
84
+
85
+ .react-time-picker__inputGroup__leadingZero {
86
+ padding-right: 8px;
87
+ display: inline !important;
88
+ }
89
+
90
+ .react-time-picker__inputGroup__input {
91
+ padding: 0;
92
+ min-width: none;
93
+ outline: none !important;
94
+ border: none !important;
95
+ }
96
+
97
+ .react-time-picker__wrapper {
98
+ padding-left: 8px;
99
+ }
100
+ }
101
+
102
+ .citizen {
103
+ .main {
104
+ padding-top: 82px;
105
+ min-height: calc(100vh - 90px);
106
+ }
107
+ }
108
+
109
+ .citizen,
110
+ .employee {
111
+ .sidebar {
112
+ position: fixed;
113
+ left: 0;
114
+ background: #0b4b66;
115
+ height: 100%;
116
+ color: theme(colors.white);
117
+ margin-top: 60px;
118
+ z-index: 999;
119
+ transition: 0.3s ease all;
120
+ white-space: nowrap;
121
+ height: calc(100vh - 36px);
122
+ padding-bottom: 5rem;
123
+
124
+ .actions {
125
+ cursor: pointer;
126
+ display: flex;
127
+ align-items: center;
128
+ .tooltip {
129
+ margin-left: 16px;
130
+ }
131
+ margin-bottom: 0px;
132
+ }
133
+
134
+ svg {
135
+ width: 24px;
136
+ height: 24px;
137
+ fill: theme(colors.white);
138
+ }
139
+ a {
140
+ display: flex;
141
+ }
142
+ .sidebar-link {
143
+ display: flex;
144
+ color: theme(colors.white);
145
+ justify-content: space-between;
146
+ align-items: center;
147
+ padding: 20px;
148
+ font-size: 14px;
149
+
150
+ &.level-0 {
151
+ margin: 0 0.3rem 0 0.3rem;
152
+ &.select-level {
153
+ border-top: 1px solid;
154
+ border-bottom: 1px solid;
155
+ }
156
+ }
157
+
158
+ &.active {
159
+ color: theme(colors.primary.main) !important;
160
+
161
+ border-right: none;
162
+ svg {
163
+ fill: theme(colors.primary.main) !important;
164
+ }
165
+ }
166
+ .employee-search-input {
167
+ border: none;
168
+ outline: none;
169
+ background-color: rgba(0, 0, 0, 0);
170
+ margin-left: 13px;
171
+ }
172
+ .custom-link {
173
+ .tooltip {
174
+ margin-left: 16px;
175
+ span {
176
+ margin-left: unset !important;
177
+ left: unset !important;
178
+ }
179
+ }
180
+ }
181
+
182
+ svg {
183
+ fill: theme(colors.white) !important;
184
+ width: 21px;
185
+ height: 21px;
186
+ }
187
+
188
+ &:hover {
189
+ background-color: #0b4b66;
190
+
191
+ cursor: pointer;
192
+ }
193
+ .search-icon-wrapper {
194
+ border: 2px solid theme(colors.white);
195
+ border-radius: 4px;
196
+ padding: 5px;
197
+ svg {
198
+ fill: theme(colors.white) !important;
199
+ width: 21px;
200
+ height: 21px;
201
+ path {
202
+ fill: theme(colors.white) !important;
203
+ }
204
+ }
205
+ }
206
+ }
207
+ .dropdown-link {
208
+ height: 40px;
209
+ display: flex;
210
+ margin-left: 40px;
211
+ align-items: center;
212
+ text-decoration: none;
213
+ color: theme(colors.white);
214
+ font-size: 14px;
215
+ .actions {
216
+ .tooltiptext {
217
+ left: unset;
218
+ right: 1%;
219
+ }
220
+ }
221
+ svg {
222
+ width: 20px;
223
+ height: 20px;
224
+ fill: theme(colors.white);
225
+ }
226
+ &:hover {
227
+ background-color: #6a8e9d;
228
+ opacity: 0.8;
229
+ cursor: pointer;
230
+ svg {
231
+ fill: #fe7a51 !important;
232
+ }
233
+ }
234
+
235
+ &.active {
236
+ border-left: 4px solid theme(colors.primary.main);
237
+ &.level-0 {
238
+ }
239
+ &.level-1 {
240
+ border-left: 8.5px solid theme(colors.primary.main);
241
+ }
242
+ &.level-2 {
243
+ border-left: 4px solid theme(colors.primary.main);
244
+ }
245
+
246
+ &.level-3 {
247
+ }
248
+ color: theme(colors.primary.main) !important;
249
+ border-right: none;
250
+ svg {
251
+ fill: theme(colors.primary.main) !important;
252
+ }
253
+ }
254
+ }
255
+ span {
256
+ margin-left: 16px;
257
+ text-overflow: ellipsis;
258
+ overflow: hidden;
259
+ white-space: nowrap;
260
+ }
261
+ }
262
+
263
+ .wrapperStyles {
264
+ margin-top: -5px;
265
+ padding-left: 20px;
266
+ padding-top: 10px;
267
+
268
+ .containerStyles {
269
+ border: 1px solid theme(colors.text.secondary);
270
+ padding: 16px;
271
+ margin-bottom: 20px;
272
+ }
273
+
274
+ &.leftBorder {
275
+ border-left: 2px solid rgba(0, 0, 0, 0.12);
276
+ }
277
+ }
278
+
279
+ .rowContainerStyles {
280
+ @apply flex flex-col;
281
+ }
282
+
283
+ .tableContainerStyles {
284
+ border: 1px solid theme(colors.text.secondary);
285
+ padding: 16px;
286
+ margin-bottom: 20px;
287
+ }
288
+
289
+ .historyTables {
290
+ display: grid;
291
+ grid-template-rows: 100px 100px;
292
+ grid-template-columns: repeat(5, minmax(100px, 1fr));
293
+ }
294
+
295
+ .historyContent {
296
+ margin: 0 10px;
297
+ position: relative;
298
+ padding-bottom: 5px;
299
+ }
300
+
301
+ .historyCheckpoint {
302
+ background-color: #fe7a51;
303
+ border-radius: 100%;
304
+ width: 18px;
305
+ height: 18px;
306
+ display: inline-block;
307
+ position: relative;
308
+ left: -9px;
309
+ top: 4px;
310
+
311
+ &.zIndex {
312
+ z-index: 10;
313
+ }
314
+ }
315
+
316
+ .historyTableDateLabel {
317
+ color: rgba(0, 0, 0, 0.87);
318
+ font-size: 16px;
319
+ font-weight: 700;
320
+ line-height: 17px;
321
+ text-align: left;
322
+ display: inline-block;
323
+ padding-top: 5px;
324
+ }
325
+
326
+ .bottomMargin {
327
+ margin-bottom: 0px;
328
+ }
329
+
330
+ .historyTableDate {
331
+ color: rgba(0, 0, 0, 0.87);
332
+ font-size: 19px;
333
+ font-weight: 400;
334
+ line-height: 17px;
335
+ text-align: left;
336
+ display: inline-block;
337
+ padding-top: 10px;
338
+ }
339
+
340
+ .historyHorizontalBar {
341
+ background-color: rgba(0, 0, 0, 0.12);
342
+ width: auto;
343
+ height: 2px;
344
+ margin-left: 16px;
345
+ }
346
+
347
+ .smallText {
348
+ font-weight: 500;
349
+ font-size: 14px;
350
+ }
351
+ }
352
+
353
+ .citizen {
354
+ .sidebar {
355
+ margin-top: 54px;
356
+ min-width: 200px;
357
+ .actions {
358
+ display: flex;
359
+ align-items: center;
360
+ gap: 10px;
361
+ }
362
+ }
363
+ }
364
+
365
+ .link {
366
+ @apply text-primary-main cursor-pointer;
367
+
368
+ :hover {
369
+ @apply text-primary-dark;
370
+ }
371
+ }
372
+
373
+ .RightMostTopBarOptions {
374
+ @apply flex;
375
+ .EventNotificationWrapper {
376
+ @apply relative cursor-pointer ml-md;
377
+ span {
378
+ top: -10px;
379
+ right: -10px;
380
+ @apply absolute bg-error h-5 w-5 rounded-full text-center;
381
+ p {
382
+ line-height: 20px;
383
+ }
384
+ }
385
+ }
386
+ .digit-dropdown-employee-select-wrap.language-dropdown{
387
+ .header-dropdown-label{
388
+ .cp{
389
+ color: #fff
390
+ }
391
+ .header-dropdown-arrow{
392
+ path{
393
+ fill: #fff;
394
+ }
395
+ }
396
+ }
397
+ .header-dropdown-menu{
398
+ right: 1rem;
399
+ }
400
+ }
401
+ .select-wrap {
402
+ margin-bottom: unset;
403
+ svg {
404
+ fill: theme(colors.white);
405
+ }
406
+ }
407
+ }
408
+
409
+ @media (min-width: 640px) {
410
+ .employee {
411
+ .ground-container {
412
+ @apply block;
413
+ }
414
+ .breadcrumb {
415
+ @apply mb-lg;
416
+ margin-left: 0;
417
+ }
418
+ .card-home {
419
+ width: 270px;
420
+ margin-right: 10px;
421
+ margin-bottom: 10px;
422
+ }
423
+ .card-home-hrms {
424
+ width: 405px;
425
+ padding: 0px;
426
+ margin-right: 16px;
427
+ margin-bottom: 16px;
428
+ }
429
+ .main {
430
+ display: flex;
431
+ flex-direction: column;
432
+ padding-top: 80px;
433
+ margin-left: 72px;
434
+ width: calc(100%-83px);
435
+ }
436
+ .citizen-home-container {
437
+ display: flex;
438
+ flex-direction: unset !important;
439
+ width: unset !important;
440
+ margin-left: unset !important;
441
+ padding-top: 58px;
442
+ }
443
+ }
444
+
445
+ .citizen {
446
+ .main {
447
+ width: 100%;
448
+ padding-top: 58px;
449
+ height: 100%;
450
+ display: flex;
451
+ justify-content: center;
452
+ }
453
+
454
+ .center-container {
455
+ }
456
+ }
457
+ }
458
+
459
+ .fullWidth {
460
+ width: 100%;
461
+ }
462
+
463
+ .multi-select-container {
464
+ .disposal-text {
465
+ @apply font-bold;
466
+ }
467
+
468
+ .disposal-info {
469
+ @apply my-md ml-sm;
470
+ }
471
+
472
+ .disposal-action-bar {
473
+ @apply flex justify-between items-center;
474
+ }
475
+ }
476
+
477
+ @screen dt {
478
+ .d-grid {
479
+ display: grid;
480
+ grid-template-columns: 250px 250px 250px 250px;
481
+ column-gap: 10px;
482
+ row-gap: 2px;
483
+ margin-left: -12px;
484
+ }
485
+ }
486
+
487
+ .m-auto {
488
+ margin: auto !important;
489
+ }
490
+
491
+ .mb-50 {
492
+ margin-bottom: 50px;
493
+ }
494
+ .mb-25 {
495
+ margin-bottom: 25px;
496
+ }
497
+
498
+ .back-wrapper {
499
+ display: flex;
500
+ justify-content: space-between;
501
+
502
+ .top-back-btn {
503
+ margin-bottom: 0px;
504
+ color: theme(colors.white);
505
+ margin-right: 1em;
506
+ & svg {
507
+ fill: theme(colors.white);
508
+ }
509
+ }
510
+ .hambuger-back-wrapper {
511
+ display: flex;
512
+ h3{
513
+ margin-top: 0;
514
+ margin-bottom: 0;
515
+ }
516
+ @media (min-width: 780px) {
517
+ .hamburger-span {
518
+ display: none;
519
+ }
520
+ }
521
+ }
522
+ }
523
+
524
+ @screen dt {
525
+ .back-wrapper {
526
+ margin-right: 2rem;
527
+ margin-left: 2rem;
528
+ }
529
+ }
530
+
531
+ .user-profile {
532
+ @media (min-width: 780px) {
533
+ width: calc(100% - 219px);
534
+ margin-left: 16px;
535
+ margin-right: 16px;
536
+ }
537
+ }
538
+
539
+ .link {
540
+ a {
541
+ color: inherit;
542
+ text-decoration: inherit;
543
+ }
544
+ }
545
+
546
+ .breadcrumb {
547
+ a {
548
+ color: inherit;
549
+ text-decoration: inherit;
550
+ }
551
+ }
552
+
553
+ .sidebar-link.active {
554
+ .custom-link {
555
+ text-decoration: none;
556
+ div {
557
+ span {
558
+ color: theme(colors.primary.main) !important;
559
+ text-decoration: none;
560
+ }
561
+ }
562
+ }
563
+ }
564
+ .bread-crumb {
565
+ a {
566
+ color: inherit;
567
+ text-decoration: inherit;
568
+ }
569
+ }
570
+
571
+ .sidebar-link {
572
+ .custom-link {
573
+ text-decoration: none;
574
+ div {
575
+ span {
576
+ color: theme(colors.white);
577
+ text-decoration: none;
578
+ }
579
+ }
580
+ }
581
+ }
582
+ .mandatory-span {
583
+ margin-left: 0.5rem;
584
+ color: red !important;
585
+ font-size: 1rem;
586
+ font-weight: 700;
587
+ }
588
+
589
+ /* TODO fix required NABEEL/ANIL for home screen card */
590
+ .customEmployeeCard {
591
+ @apply m-sm !important;
592
+ }
593
+
594
+ /* .digit-toast-success.animate.digit-error {
595
+ left: 50%;
596
+ transform: translateX(-50%);
597
+ bottom: 5rem;
598
+ animation: slideInFromBottom 0.5s ease forwards;
599
+ }
600
+
601
+ @keyframes slideInFromBottom {
602
+ 0% {
603
+ transform: translateX(-50%) translateY(100%);
604
+ }
605
+ 100% {
606
+ transform: translateX(-50%) translateY(0);
607
+ }
608
+ }
609
+ */
610
+
611
+ .main.digit-home-main{
612
+ margin-top: 1rem;
613
+ }