@djb25/digit-ui-css 1.0.25 → 1.0.27
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 +1 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/SearchForm.scss +2 -1
- package/src/components/body.scss +1 -1
- package/src/components/card.scss +82 -30
- package/src/components/hoc/InboxComposer.scss +1 -1
- package/src/components/multiSelectDropdown.scss +69 -70
- package/src/components/selectdropdown.scss +4 -2
- package/src/components/staticSideBar.scss +207 -1
- package/src/components/textfields.scss +3 -1
- package/src/components/uploadcomponents.scss +6 -2
- package/src/digitv2/components/FormComposerV2.scss +6 -5
- package/src/digitv2/components/checkboxV2.scss +1 -2
- package/src/digitv2/components/multiSelectDropdownV2.scss +1 -1
- package/src/digitv2/pages/employee/workbench.scss +1 -2
- package/src/index.scss +11 -4
- package/src/pages/citizen/HomePageWrapper.scss +263 -83
- package/src/pages/employee/inbox.scss +2 -0
- package/src/pages/employee/index.scss +21 -2
package/src/index.scss
CHANGED
|
@@ -474,12 +474,13 @@ input[type="number"] {
|
|
|
474
474
|
}
|
|
475
475
|
.phone-input-wrapper:hover {
|
|
476
476
|
.employee-card-input--front {
|
|
477
|
-
border:
|
|
477
|
+
border: 2px solid #a1a1aa;
|
|
478
478
|
border-right: 0;
|
|
479
|
+
color: #a1a1aa;
|
|
479
480
|
}
|
|
480
481
|
|
|
481
482
|
input {
|
|
482
|
-
border: 1px solid #
|
|
483
|
+
border: 1px solid #e5e5e7;
|
|
483
484
|
}
|
|
484
485
|
}
|
|
485
486
|
|
|
@@ -488,8 +489,7 @@ input[type="number"] {
|
|
|
488
489
|
|
|
489
490
|
input {
|
|
490
491
|
&:hover {
|
|
491
|
-
|
|
492
|
-
border: 1px solid #667eea;
|
|
492
|
+
border: 2px solid #a1a1aa;
|
|
493
493
|
}
|
|
494
494
|
}
|
|
495
495
|
}
|
|
@@ -562,7 +562,14 @@ input[type="number"] {
|
|
|
562
562
|
overflow-x: scroll;
|
|
563
563
|
border-radius: 6px;
|
|
564
564
|
flex: 1 1 0%;
|
|
565
|
+
scrollbar-width: none;
|
|
565
566
|
}
|
|
567
|
+
|
|
568
|
+
/* Chrome, Edge, Safari */
|
|
569
|
+
.result::-webkit-scrollbar:horizontal {
|
|
570
|
+
display: none;
|
|
571
|
+
}
|
|
572
|
+
|
|
566
573
|
.inbox-search-container {
|
|
567
574
|
.result {
|
|
568
575
|
@apply mt-lg;
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
.HomePageWrapper {
|
|
2
|
-
margin-top:
|
|
2
|
+
margin-top: 0;
|
|
3
|
+
padding: 24px 24px 56px;
|
|
4
|
+
margin-left: auto;
|
|
5
|
+
margin-right: auto;
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
gap: 24px;
|
|
9
|
+
position: relative;
|
|
10
|
+
align-items: stretch;
|
|
11
|
+
z-index: 1;
|
|
3
12
|
|
|
4
13
|
.BannerWithSearch {
|
|
5
14
|
margin-bottom: 40px;
|
|
@@ -33,22 +42,63 @@
|
|
|
33
42
|
|
|
34
43
|
.WhatsNewSection {
|
|
35
44
|
@apply m-sm;
|
|
36
|
-
padding:
|
|
45
|
+
padding: 24px 32px;
|
|
46
|
+
background: rgba(255, 255, 255, 0.85);
|
|
47
|
+
backdrop-filter: blur(16px);
|
|
48
|
+
-webkit-backdrop-filter: blur(16px);
|
|
49
|
+
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
|
|
50
|
+
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
51
|
+
border-radius: 20px;
|
|
52
|
+
position: relative;
|
|
53
|
+
margin: 0px !important;
|
|
54
|
+
|
|
55
|
+
&::before {
|
|
56
|
+
content: "";
|
|
57
|
+
position: absolute;
|
|
58
|
+
left: 32px;
|
|
59
|
+
right: 32px;
|
|
60
|
+
top: 0;
|
|
61
|
+
height: 4px;
|
|
62
|
+
border-radius: 999px;
|
|
63
|
+
background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.8), rgba(59, 130, 246, 0.1));
|
|
64
|
+
}
|
|
37
65
|
|
|
38
66
|
.headSection {
|
|
39
67
|
@apply flex mb-sm justify-between;
|
|
68
|
+
align-items: center;
|
|
40
69
|
|
|
41
70
|
h2 {
|
|
42
|
-
@apply text-heading-s font-bold text-text-primary
|
|
71
|
+
@apply text-heading-s font-bold text-text-primary;
|
|
72
|
+
padding-left: 0;
|
|
73
|
+
font-size: 22px;
|
|
74
|
+
color: #1e293b;
|
|
43
75
|
}
|
|
44
76
|
|
|
45
77
|
p {
|
|
46
|
-
@apply
|
|
78
|
+
@apply font-medium cursor-pointer;
|
|
79
|
+
color: #fff;
|
|
80
|
+
background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
|
|
81
|
+
padding: 8px 16px;
|
|
82
|
+
border-radius: 999px;
|
|
83
|
+
font-size: 14px;
|
|
84
|
+
box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
|
|
85
|
+
transition: all 0.3s ease;
|
|
86
|
+
|
|
87
|
+
&:hover {
|
|
88
|
+
transform: translateY(-2px);
|
|
89
|
+
box-shadow: 0 6px 14px rgba(59, 130, 246, 0.4);
|
|
90
|
+
background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
|
|
91
|
+
}
|
|
47
92
|
}
|
|
48
93
|
}
|
|
49
94
|
|
|
50
95
|
@media (min-width: 780px) {
|
|
51
|
-
padding:
|
|
96
|
+
padding: 32px 36px;
|
|
97
|
+
|
|
98
|
+
&::before {
|
|
99
|
+
left: 36px;
|
|
100
|
+
right: 36px;
|
|
101
|
+
}
|
|
52
102
|
}
|
|
53
103
|
}
|
|
54
104
|
|
|
@@ -63,14 +113,27 @@
|
|
|
63
113
|
}
|
|
64
114
|
}
|
|
65
115
|
|
|
66
|
-
/* ===== Citizen Theme
|
|
116
|
+
/* ===== Citizen Theme ===== */
|
|
67
117
|
.citizen-app-container {
|
|
68
118
|
width: 100%;
|
|
69
119
|
display: flex;
|
|
70
120
|
flex-direction: column;
|
|
71
|
-
gap:
|
|
72
|
-
padding:
|
|
73
|
-
margin-top:
|
|
121
|
+
gap: 30px;
|
|
122
|
+
padding: 30px 32px 40px;
|
|
123
|
+
margin-top: 10px;
|
|
124
|
+
background: rgba(255, 255, 255, 0.7);
|
|
125
|
+
backdrop-filter: blur(20px);
|
|
126
|
+
-webkit-backdrop-filter: blur(20px);
|
|
127
|
+
border-radius: 24px;
|
|
128
|
+
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
129
|
+
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 1);
|
|
130
|
+
position: relative;
|
|
131
|
+
overflow: hidden;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.citizen-app-container>* {
|
|
135
|
+
position: relative;
|
|
136
|
+
z-index: 1;
|
|
74
137
|
}
|
|
75
138
|
|
|
76
139
|
.citizen-module-header {
|
|
@@ -81,101 +144,181 @@
|
|
|
81
144
|
|
|
82
145
|
.citizen-header-top-section {
|
|
83
146
|
width: 100% !important;
|
|
84
|
-
background: #
|
|
85
|
-
padding:
|
|
86
|
-
border-radius:
|
|
147
|
+
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
|
|
148
|
+
padding: 24px 32px !important;
|
|
149
|
+
border-radius: 20px !important;
|
|
87
150
|
display: flex !important;
|
|
88
151
|
align-items: center !important;
|
|
89
|
-
justify-content:
|
|
90
|
-
min-height:
|
|
91
|
-
box-shadow: 0
|
|
152
|
+
justify-content: space-between !important;
|
|
153
|
+
min-height: 80px !important;
|
|
154
|
+
box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3) !important;
|
|
155
|
+
position: relative;
|
|
156
|
+
overflow: hidden;
|
|
157
|
+
|
|
158
|
+
&::before {
|
|
159
|
+
content: "";
|
|
160
|
+
position: absolute;
|
|
161
|
+
top: 0;
|
|
162
|
+
left: 0;
|
|
163
|
+
width: 100%;
|
|
164
|
+
height: 100%;
|
|
165
|
+
background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
|
|
166
|
+
opacity: 0.8;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
&::after {
|
|
170
|
+
content: "";
|
|
171
|
+
position: absolute;
|
|
172
|
+
right: -80px;
|
|
173
|
+
top: -80px;
|
|
174
|
+
width: 250px;
|
|
175
|
+
height: 250px;
|
|
176
|
+
background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
|
|
177
|
+
border-radius: 50%;
|
|
178
|
+
}
|
|
92
179
|
}
|
|
93
180
|
|
|
94
181
|
.citizen-header-title {
|
|
95
182
|
margin: 0;
|
|
96
|
-
font-size:
|
|
97
|
-
font-weight:
|
|
183
|
+
font-size: 28px;
|
|
184
|
+
font-weight: 800;
|
|
98
185
|
color: #ffffff;
|
|
186
|
+
letter-spacing: 0.5px;
|
|
187
|
+
text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
99
188
|
}
|
|
100
189
|
}
|
|
101
190
|
|
|
102
191
|
.citizen-module-grid {
|
|
103
192
|
display: grid;
|
|
104
|
-
grid-template-columns: repeat(
|
|
105
|
-
gap:
|
|
193
|
+
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
194
|
+
gap: 24px;
|
|
106
195
|
padding: 0;
|
|
107
196
|
width: 100%;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
108
199
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
200
|
+
/* ============================================================
|
|
201
|
+
.citizen-service-card — MUST be at root level (not nested
|
|
202
|
+
inside .HomePageWrapper) so BEM & selectors compile correctly
|
|
203
|
+
============================================================ */
|
|
204
|
+
.citizen-service-card {
|
|
205
|
+
background: #ffffff !important;
|
|
206
|
+
border: 0.5px solid rgba(0, 0, 0, 0.08) !important;
|
|
207
|
+
border-radius: 16px !important;
|
|
208
|
+
padding: 18px 16px !important;
|
|
209
|
+
display: flex !important;
|
|
210
|
+
flex-direction: row !important;
|
|
211
|
+
align-items: center !important;
|
|
212
|
+
gap: 14px !important;
|
|
213
|
+
cursor: pointer !important;
|
|
214
|
+
min-height: 82px !important;
|
|
215
|
+
overflow: hidden !important;
|
|
216
|
+
position: relative;
|
|
217
|
+
transition: border-color 0.25s ease,
|
|
218
|
+
transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
|
|
219
|
+
background 0.2s ease !important;
|
|
220
|
+
|
|
221
|
+
&:hover {
|
|
222
|
+
border-color: #93c5fd !important;
|
|
223
|
+
transform: translateY(-3px) !important;
|
|
224
|
+
background: #f8fbff !important;
|
|
225
|
+
}
|
|
112
226
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
227
|
+
&__icon {
|
|
228
|
+
width: 44px !important;
|
|
229
|
+
height: 44px !important;
|
|
230
|
+
flex-shrink: 0 !important;
|
|
231
|
+
background: #eff6ff;
|
|
232
|
+
border-radius: 12px;
|
|
233
|
+
display: flex !important;
|
|
234
|
+
align-items: center !important;
|
|
235
|
+
justify-content: center !important;
|
|
236
|
+
padding: 10px;
|
|
237
|
+
transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
|
|
238
|
+
background 0.25s ease;
|
|
116
239
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
240
|
+
svg {
|
|
241
|
+
width: 22px !important;
|
|
242
|
+
height: 22px !important;
|
|
243
|
+
fill: #2563eb !important;
|
|
120
244
|
}
|
|
121
245
|
}
|
|
122
246
|
|
|
123
|
-
|
|
124
|
-
background: #
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
247
|
+
&:hover &__icon {
|
|
248
|
+
background: #dbeafe;
|
|
249
|
+
transform: scale(1.1) rotate(4deg);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/* Fixed height + overflow:hidden is what clips the sliding text */
|
|
253
|
+
&__content {
|
|
254
|
+
flex: 1;
|
|
255
|
+
position: relative;
|
|
256
|
+
height: 40px;
|
|
257
|
+
overflow: hidden;
|
|
258
|
+
display: block;
|
|
259
|
+
/* NOT flex — flex breaks absolute child stacking */
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/* Label: visible by default, slides out upward on hover */
|
|
263
|
+
&__label {
|
|
264
|
+
position: absolute !important;
|
|
265
|
+
inset: 0 !important;
|
|
128
266
|
display: flex !important;
|
|
129
|
-
flex-direction: row !important;
|
|
130
267
|
align-items: center !important;
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
&__icon {
|
|
144
|
-
width: 40px !important;
|
|
145
|
-
height: 40px !important;
|
|
146
|
-
display: flex !important;
|
|
147
|
-
align-items: center !important;
|
|
148
|
-
justify-content: center !important;
|
|
149
|
-
flex-shrink: 0 !important;
|
|
268
|
+
margin: 0 !important;
|
|
269
|
+
font-size: 14px !important;
|
|
270
|
+
font-weight: 500 !important;
|
|
271
|
+
color: #1e293b !important;
|
|
272
|
+
line-height: 1.35 !important;
|
|
273
|
+
transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
|
|
274
|
+
opacity 0.25s ease !important;
|
|
275
|
+
transform: translateY(0);
|
|
276
|
+
opacity: 1;
|
|
277
|
+
}
|
|
150
278
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
279
|
+
/* Description: hidden below by default, slides up into view on hover */
|
|
280
|
+
&__description {
|
|
281
|
+
position: absolute !important;
|
|
282
|
+
inset: 0 !important;
|
|
283
|
+
display: flex !important;
|
|
284
|
+
align-items: center !important;
|
|
285
|
+
margin: 0 !important;
|
|
286
|
+
font-size: 12.5px !important;
|
|
287
|
+
font-weight: 400 !important;
|
|
288
|
+
color: #2563eb !important;
|
|
289
|
+
line-height: 1.4 !important;
|
|
290
|
+
transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
|
|
291
|
+
opacity 0.25s ease !important;
|
|
292
|
+
transform: translateY(110%);
|
|
293
|
+
/* starts hidden below */
|
|
294
|
+
opacity: 0;
|
|
295
|
+
}
|
|
155
296
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
297
|
+
&:hover &__label {
|
|
298
|
+
transform: translateY(-110%);
|
|
299
|
+
/* slides out upward */
|
|
300
|
+
opacity: 0;
|
|
301
|
+
}
|
|
161
302
|
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
color: #333333 !important;
|
|
167
|
-
text-align: left !important;
|
|
168
|
-
width: auto !important;
|
|
169
|
-
flex: 1 !important;
|
|
170
|
-
}
|
|
303
|
+
&:hover &__description {
|
|
304
|
+
transform: translateY(0);
|
|
305
|
+
/* slides in from below */
|
|
306
|
+
opacity: 1;
|
|
171
307
|
}
|
|
172
308
|
}
|
|
173
309
|
|
|
310
|
+
/* ============================================================
|
|
311
|
+
Rest of the file — unchanged
|
|
312
|
+
============================================================ */
|
|
174
313
|
@media (min-width: 780px) {
|
|
175
314
|
.SideBarStatic {
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
315
|
+
display: flex;
|
|
316
|
+
align-items: flex-start;
|
|
317
|
+
position: sticky;
|
|
318
|
+
top: 58px;
|
|
319
|
+
height: calc(100vh - 58px);
|
|
320
|
+
min-height: calc(100vh - 58px);
|
|
321
|
+
align-self: flex-start;
|
|
179
322
|
}
|
|
180
323
|
}
|
|
181
324
|
|
|
@@ -186,18 +329,44 @@
|
|
|
186
329
|
}
|
|
187
330
|
|
|
188
331
|
.HomePageContainer {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
332
|
+
flex: 1;
|
|
333
|
+
min-width: 0;
|
|
334
|
+
position: relative;
|
|
335
|
+
overflow: hidden;
|
|
336
|
+
padding-bottom: 40px;
|
|
337
|
+
|
|
338
|
+
&::before {
|
|
339
|
+
content: "";
|
|
340
|
+
position: absolute;
|
|
341
|
+
right: -5%;
|
|
342
|
+
top: -5%;
|
|
343
|
+
width: 50vw;
|
|
344
|
+
height: 50vw;
|
|
345
|
+
background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 70%);
|
|
346
|
+
border-radius: 50%;
|
|
347
|
+
opacity: 0.8;
|
|
348
|
+
z-index: 0;
|
|
349
|
+
pointer-events: none;
|
|
193
350
|
}
|
|
194
|
-
}
|
|
195
351
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
352
|
+
&::after {
|
|
353
|
+
content: "";
|
|
354
|
+
position: absolute;
|
|
355
|
+
left: -10%;
|
|
356
|
+
bottom: -10%;
|
|
357
|
+
width: 60vw;
|
|
358
|
+
height: 60vw;
|
|
359
|
+
background: radial-gradient(circle, rgba(147, 197, 253, 0.15) 0%, rgba(147, 197, 253, 0) 70%);
|
|
360
|
+
border-radius: 50%;
|
|
361
|
+
opacity: 0.8;
|
|
362
|
+
z-index: 0;
|
|
363
|
+
pointer-events: none;
|
|
199
364
|
}
|
|
365
|
+
}
|
|
200
366
|
|
|
367
|
+
.moduleLinkHomePage {
|
|
368
|
+
flex: 1;
|
|
369
|
+
min-width: 0;
|
|
201
370
|
margin-top: -25px;
|
|
202
371
|
|
|
203
372
|
img {
|
|
@@ -238,6 +407,7 @@
|
|
|
238
407
|
@screen dt {
|
|
239
408
|
.HomePageWrapper {
|
|
240
409
|
width: 100%;
|
|
410
|
+
padding: 28px 32px 64px;
|
|
241
411
|
|
|
242
412
|
.BannerWithSearch {
|
|
243
413
|
margin-bottom: 56px;
|
|
@@ -262,7 +432,6 @@
|
|
|
262
432
|
width: 100%;
|
|
263
433
|
}
|
|
264
434
|
}
|
|
265
|
-
|
|
266
435
|
}
|
|
267
436
|
|
|
268
437
|
.moduleLinkHomePage {
|
|
@@ -285,4 +454,15 @@
|
|
|
285
454
|
.moduleLinkHomePageModuleLinks {
|
|
286
455
|
width: 100%;
|
|
287
456
|
}
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.citizen-home-container {
|
|
460
|
+
display: flex;
|
|
461
|
+
width: 100%;
|
|
462
|
+
align-items: flex-start;
|
|
463
|
+
justify-content: flex-start;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.citizen .citizen-home-container {
|
|
467
|
+
justify-content: flex-start;
|
|
288
468
|
}
|
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
.filter-form {
|
|
104
|
+
flex: 1;
|
|
104
105
|
.filter-card {
|
|
105
106
|
border-radius: 6px;
|
|
106
107
|
@apply bg-white min-h-full;
|
|
@@ -151,6 +152,7 @@
|
|
|
151
152
|
display: flex;
|
|
152
153
|
flex-direction: column;
|
|
153
154
|
gap: 16px;
|
|
155
|
+
scrollbar-width: none;
|
|
154
156
|
|
|
155
157
|
.filter {
|
|
156
158
|
.filter-card {
|
|
@@ -74,6 +74,26 @@
|
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
+
.no-scrollbar::-webkit-scrollbar {
|
|
78
|
+
display: none;
|
|
79
|
+
}
|
|
80
|
+
.no-scrollbar {
|
|
81
|
+
scrollbar-width: none;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.hide-x-scrollbar {
|
|
85
|
+
overflow-x: auto;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.hide-x-scrollbar::-webkit-scrollbar:horizontal {
|
|
89
|
+
display: none;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* Firefox */
|
|
93
|
+
.hide-x-scrollbar {
|
|
94
|
+
scrollbar-width: none;
|
|
95
|
+
}
|
|
96
|
+
|
|
77
97
|
.employee-main-application-details {
|
|
78
98
|
width: 100%;
|
|
79
99
|
overflow-y: scroll;
|
|
@@ -867,7 +887,6 @@
|
|
|
867
887
|
}
|
|
868
888
|
}
|
|
869
889
|
|
|
870
|
-
|
|
871
890
|
.top-info-cards-wrapper {
|
|
872
891
|
display: flex;
|
|
873
892
|
flex-direction: column;
|
|
@@ -1023,7 +1042,7 @@
|
|
|
1023
1042
|
bottom: 0;
|
|
1024
1043
|
background: rgba(0, 0, 0, 0.5);
|
|
1025
1044
|
backdrop-filter: blur(4px);
|
|
1026
|
-
z-index:
|
|
1045
|
+
z-index: 9999999;
|
|
1027
1046
|
display: flex;
|
|
1028
1047
|
justify-content: center;
|
|
1029
1048
|
align-items: center;
|