@djb25/digit-ui-css 1.0.9 → 1.0.11
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 +3 -2
- package/src/components/PropertySearchForm.scss +11 -12
- package/src/components/SearchForm.scss +645 -664
- package/src/components/body.scss +128 -2
- package/src/components/card.scss +10 -29
- package/src/components/checkbox.scss +80 -71
- package/src/components/financeUi.scss +61 -0
- package/src/components/hoc/InboxComposer.scss +4 -1
- package/src/components/moduleHeader.scss +15 -1
- package/src/components/topbar.scss +8 -0
- package/src/digitv2/components/appContainerV2.scss +3 -3
- package/src/digitv2/pages/employee/workbench.scss +404 -509
- package/src/index.scss +46 -17
- package/src/pages/citizen/DocumentList.scss +20 -21
- package/src/pages/citizen/updatePropertyNumber.scss +3 -2
- package/src/pages/employee/container.scss +4 -9
- package/src/pages/employee/ekyc.scss +138 -0
- package/src/pages/employee/inbox.scss +21 -12
- package/src/pages/employee/index.scss +16 -49
package/src/components/body.scss
CHANGED
|
@@ -90,15 +90,141 @@ body {
|
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
+
.module-container {
|
|
94
|
+
padding-inline: 24px;
|
|
95
|
+
}
|
|
96
|
+
|
|
93
97
|
@screen dt {
|
|
98
|
+
.employee-app-homepage-container {
|
|
99
|
+
@apply w-full;
|
|
100
|
+
display: flex;
|
|
101
|
+
flex-direction: column;
|
|
102
|
+
gap: 12px;
|
|
103
|
+
padding-top: 12px;
|
|
104
|
+
padding-inline: 58px;
|
|
105
|
+
}
|
|
106
|
+
|
|
94
107
|
.employee-app-container {
|
|
95
108
|
@apply w-full;
|
|
96
109
|
display: flex;
|
|
97
110
|
flex-direction: column;
|
|
98
111
|
gap: 12px;
|
|
99
|
-
padding: 12px
|
|
112
|
+
padding-top: 12px;
|
|
100
113
|
}
|
|
101
114
|
|
|
115
|
+
.wt-inbox {
|
|
116
|
+
.header {
|
|
117
|
+
font-size: 18px;
|
|
118
|
+
display: flex;
|
|
119
|
+
align-items: center;
|
|
120
|
+
justify-content: space-between;
|
|
121
|
+
background-color: #fff;
|
|
122
|
+
border-radius: 11px;
|
|
123
|
+
padding: 5px 20px;
|
|
124
|
+
font-weight: 500;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.form-container {
|
|
129
|
+
display: flex;
|
|
130
|
+
flex-direction: column;
|
|
131
|
+
gap: 12px;
|
|
132
|
+
padding: 20px;
|
|
133
|
+
width: 100%;
|
|
134
|
+
|
|
135
|
+
.header {
|
|
136
|
+
font-size: 18px;
|
|
137
|
+
display: flex;
|
|
138
|
+
align-items: center;
|
|
139
|
+
justify-content: space-between;
|
|
140
|
+
background-color: #fff;
|
|
141
|
+
border-radius: 11px;
|
|
142
|
+
padding: 5px 20px;
|
|
143
|
+
font-weight: 500;
|
|
144
|
+
border-bottom: 2px solid #000;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.ws-docs-container {
|
|
148
|
+
padding: 8px 0;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.ws-doc-card {
|
|
152
|
+
background: #ffffff;
|
|
153
|
+
border: 1px solid #e0e0e0;
|
|
154
|
+
border-radius: 8px;
|
|
155
|
+
padding: 20px;
|
|
156
|
+
margin-bottom: 20px;
|
|
157
|
+
transition: all 0.2s ease;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.ws-doc-card:hover {
|
|
161
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.ws-doc-header {
|
|
165
|
+
display: flex;
|
|
166
|
+
justify-content: space-between;
|
|
167
|
+
align-items: center;
|
|
168
|
+
margin-bottom: 12px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.ws-doc-title {
|
|
172
|
+
font-size: 20px;
|
|
173
|
+
font-weight: 600;
|
|
174
|
+
color: #0b0c0c;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.ws-doc-required {
|
|
178
|
+
background-color: #ffe8e8;
|
|
179
|
+
color: #d32f2f;
|
|
180
|
+
padding: 4px 10px;
|
|
181
|
+
font-size: 12px;
|
|
182
|
+
border-radius: 20px;
|
|
183
|
+
font-weight: 600;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.ws-doc-description {
|
|
187
|
+
font-size: 15px;
|
|
188
|
+
color: #555;
|
|
189
|
+
margin-bottom: 16px;
|
|
190
|
+
line-height: 22px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.ws-doc-options {
|
|
194
|
+
padding-left: 4px;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.ws-doc-option {
|
|
198
|
+
display: flex;
|
|
199
|
+
align-items: flex-start;
|
|
200
|
+
margin-bottom: 8px;
|
|
201
|
+
font-size: 15px;
|
|
202
|
+
color: #333;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.ws-doc-bullet {
|
|
206
|
+
font-weight: 600;
|
|
207
|
+
margin-right: 8px;
|
|
208
|
+
}
|
|
209
|
+
form {
|
|
210
|
+
.card {
|
|
211
|
+
max-width: 960px;
|
|
212
|
+
|
|
213
|
+
h2 {
|
|
214
|
+
text-align: left;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
button {
|
|
218
|
+
max-width: 240px;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.input-otp-wrap,
|
|
222
|
+
.card-text-button {
|
|
223
|
+
text-align: left;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
102
228
|
.app-container {
|
|
103
229
|
width: 100%;
|
|
104
230
|
|
|
@@ -150,4 +276,4 @@ body {
|
|
|
150
276
|
margin-right: -27%;
|
|
151
277
|
max-height: 120px;
|
|
152
278
|
margin-top: 90px;
|
|
153
|
-
}
|
|
279
|
+
}
|
package/src/components/card.scss
CHANGED
|
@@ -180,7 +180,6 @@
|
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
@screen dt {
|
|
183
|
-
|
|
184
183
|
.submit-bar,
|
|
185
184
|
.submit-bar-disabled {
|
|
186
185
|
width: 240px;
|
|
@@ -343,7 +342,7 @@
|
|
|
343
342
|
}
|
|
344
343
|
|
|
345
344
|
/* Remove any default margins that might interfere */
|
|
346
|
-
.label-field-pair
|
|
345
|
+
.label-field-pair > * {
|
|
347
346
|
margin: 0;
|
|
348
347
|
}
|
|
349
348
|
|
|
@@ -374,7 +373,8 @@
|
|
|
374
373
|
margin-right: auto;
|
|
375
374
|
}
|
|
376
375
|
|
|
377
|
-
.header-content {
|
|
376
|
+
.header-content {
|
|
377
|
+
}
|
|
378
378
|
|
|
379
379
|
.header-end {
|
|
380
380
|
margin-left: auto;
|
|
@@ -415,7 +415,8 @@
|
|
|
415
415
|
margin-bottom: 24px;
|
|
416
416
|
}
|
|
417
417
|
|
|
418
|
-
.info-banner-wrap-citizen-override {
|
|
418
|
+
.info-banner-wrap-citizen-override {
|
|
419
|
+
}
|
|
419
420
|
|
|
420
421
|
.oc-aknowledgement-screen {
|
|
421
422
|
width: auto;
|
|
@@ -468,9 +469,6 @@
|
|
|
468
469
|
width: 100% !important;
|
|
469
470
|
}
|
|
470
471
|
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
472
|
.new-employee-card {
|
|
475
473
|
background-image: url("https://objectstorage.ap-hyderabad-1.oraclecloud.com/n/axn3czn1s06y/b/djb-dev-asset-bucket/o/dashboard_card_img.png");
|
|
476
474
|
background-size: cover;
|
|
@@ -484,7 +482,7 @@
|
|
|
484
482
|
width: 100%;
|
|
485
483
|
max-width: 426px;
|
|
486
484
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
|
|
487
|
-
font-family:
|
|
485
|
+
font-family: "Inter", -apple-system, sans-serif;
|
|
488
486
|
}
|
|
489
487
|
|
|
490
488
|
.card-header-row {
|
|
@@ -631,7 +629,6 @@
|
|
|
631
629
|
align-items: center;
|
|
632
630
|
justify-content: center;
|
|
633
631
|
text-align: center;
|
|
634
|
-
|
|
635
632
|
}
|
|
636
633
|
|
|
637
634
|
.pill-link:hover {
|
|
@@ -655,14 +652,9 @@
|
|
|
655
652
|
background-color: #0f172a;
|
|
656
653
|
}
|
|
657
654
|
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
655
|
/* --- EXISTING CARD STYLES (Keep your existing styles) --- */
|
|
663
656
|
/* Ensure .new-employee-card, .card-header-row, etc. remain as they were */
|
|
664
657
|
|
|
665
|
-
|
|
666
658
|
/* --- NEW: EXPANDED VIEW OVERLAY --- */
|
|
667
659
|
.expanded-overlay {
|
|
668
660
|
position: fixed;
|
|
@@ -840,9 +832,6 @@
|
|
|
840
832
|
padding: 20px 0;
|
|
841
833
|
}
|
|
842
834
|
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
835
|
/* --- EXPANDED VIEW OVERLAY --- */
|
|
847
836
|
.expanded-page-container {
|
|
848
837
|
display: flex;
|
|
@@ -975,7 +964,6 @@
|
|
|
975
964
|
opacity: 1;
|
|
976
965
|
}
|
|
977
966
|
|
|
978
|
-
|
|
979
967
|
/* --- RIGHT CONTENT --- */
|
|
980
968
|
.expanded-content {
|
|
981
969
|
flex: 1;
|
|
@@ -1037,7 +1025,7 @@
|
|
|
1037
1025
|
}
|
|
1038
1026
|
|
|
1039
1027
|
.module-link-card::before {
|
|
1040
|
-
content:
|
|
1028
|
+
content: "";
|
|
1041
1029
|
position: absolute;
|
|
1042
1030
|
left: 0;
|
|
1043
1031
|
top: 0;
|
|
@@ -1111,10 +1099,6 @@
|
|
|
1111
1099
|
padding: 20px 0;
|
|
1112
1100
|
}
|
|
1113
1101
|
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
1102
|
:root {
|
|
1119
1103
|
/* Dimensions */
|
|
1120
1104
|
--sidebar-expanded: 280px;
|
|
@@ -1137,28 +1121,25 @@
|
|
|
1137
1121
|
|
|
1138
1122
|
/* --- Base Sidebar --- */
|
|
1139
1123
|
.premium-sidebar {
|
|
1124
|
+
height: 100%;
|
|
1140
1125
|
display: flex;
|
|
1141
1126
|
flex-direction: column;
|
|
1142
|
-
height: stretch;
|
|
1143
1127
|
background-color: var(--bg-color);
|
|
1144
1128
|
border-right: 1px solid var(--border-color);
|
|
1145
1129
|
transition: width var(--transition-slow);
|
|
1146
1130
|
overflow-x: hidden;
|
|
1147
1131
|
box-sizing: border-box;
|
|
1148
|
-
font-family:
|
|
1132
|
+
font-family: "Inter", system-ui, -apple-system, sans-serif;
|
|
1149
1133
|
box-shadow: 4px 0 24px rgba(0, 0, 0, 0.02);
|
|
1150
1134
|
}
|
|
1151
1135
|
|
|
1152
1136
|
/* Width Control */
|
|
1153
1137
|
.premium-sidebar.expanded {
|
|
1154
1138
|
width: var(--sidebar-expanded);
|
|
1155
|
-
margin-left: -29px;
|
|
1156
1139
|
}
|
|
1157
1140
|
|
|
1158
1141
|
.premium-sidebar.collapsed {
|
|
1159
1142
|
width: var(--sidebar-collapsed);
|
|
1160
|
-
margin-left: -29px;
|
|
1161
|
-
|
|
1162
1143
|
}
|
|
1163
1144
|
|
|
1164
1145
|
/* --- Header & Brand --- */
|
|
@@ -1331,4 +1312,4 @@
|
|
|
1331
1312
|
.collapsed .nav-item-content {
|
|
1332
1313
|
justify-content: center;
|
|
1333
1314
|
padding: 12px 0;
|
|
1334
|
-
}
|
|
1315
|
+
}
|
|
@@ -1,84 +1,93 @@
|
|
|
1
1
|
.checkbox-wrap {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.input-emp {
|
|
11
|
-
@extend input;
|
|
12
|
-
width: 24px;
|
|
13
|
-
height: 24px;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.custom-checkbox {
|
|
17
|
-
width: 25px;
|
|
18
|
-
height: 25px;
|
|
19
|
-
@apply absolute top-0 left-0 border border-solid border-input-border z-0;
|
|
20
|
-
|
|
21
|
-
img {
|
|
22
|
-
@apply opacity-0;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
svg {
|
|
26
|
-
@apply opacity-0;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.custom-checkbox-emp {
|
|
31
|
-
@extend .custom-checkbox;
|
|
32
|
-
width: 24px;
|
|
33
|
-
height: 24px;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
input:checked ~ .custom-checkbox,
|
|
37
|
-
input:hover ~ .custom-checkbox {
|
|
38
|
-
@apply border-2 border-primary-main;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
input:checked ~ .custom-checkbox img {
|
|
42
|
-
@apply opacity-100;
|
|
43
|
-
}
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
position: relative;
|
|
5
|
+
margin-bottom: 16px;
|
|
6
|
+
gap: 8px;
|
|
7
|
+
}
|
|
44
8
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
9
|
+
/* Hide default checkbox */
|
|
10
|
+
.checkbox-wrap input {
|
|
11
|
+
width: 38px;
|
|
12
|
+
height: 38px;
|
|
13
|
+
opacity: 0;
|
|
14
|
+
position: absolute;
|
|
15
|
+
top: 0;
|
|
16
|
+
left: 0;
|
|
17
|
+
z-index: 10;
|
|
18
|
+
cursor: pointer;
|
|
19
|
+
}
|
|
48
20
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
21
|
+
/* Employee size */
|
|
22
|
+
.checkbox-wrap input.input-emp {
|
|
23
|
+
width: 24px;
|
|
24
|
+
height: 24px;
|
|
54
25
|
}
|
|
55
26
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
27
|
+
/* Custom checkbox box */
|
|
28
|
+
.checkbox-wrap .custom-checkbox {
|
|
29
|
+
width: 38px;
|
|
30
|
+
height: 38px;
|
|
31
|
+
border: 2px solid #ccc;
|
|
32
|
+
background-color: #fff;
|
|
33
|
+
border-radius: 2px;
|
|
34
|
+
position: absolute;
|
|
35
|
+
top: 0;
|
|
36
|
+
left: 0;
|
|
37
|
+
z-index: 0;
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
justify-content: center;
|
|
41
|
+
transition: border-color 0.15s ease;
|
|
42
|
+
}
|
|
60
43
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
44
|
+
/* Employee checkbox size */
|
|
45
|
+
.checkbox-wrap .custom-checkbox-emp {
|
|
46
|
+
width: 24px;
|
|
47
|
+
height: 24px;
|
|
48
|
+
border: 2px solid #ccc;
|
|
49
|
+
background-color: #fff;
|
|
50
|
+
border-radius: 2px;
|
|
51
|
+
position: absolute;
|
|
52
|
+
top: 0;
|
|
53
|
+
left: 0;
|
|
54
|
+
z-index: 0;
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
justify-content: center;
|
|
58
|
+
transition: border-color 0.15s ease;
|
|
64
59
|
}
|
|
65
60
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
61
|
+
/* SVG tick */
|
|
62
|
+
.checkbox-wrap .custom-checkbox svg,
|
|
63
|
+
.checkbox-wrap .custom-checkbox-emp svg {
|
|
64
|
+
opacity: 0;
|
|
65
|
+
color: #e84335;
|
|
66
|
+
transition: opacity 0.15s ease;
|
|
67
|
+
pointer-events: none;
|
|
68
|
+
}
|
|
70
69
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
70
|
+
/* Checked state */
|
|
71
|
+
.checkbox-wrap input:checked + .custom-checkbox,
|
|
72
|
+
.checkbox-wrap input:checked + .custom-checkbox-emp {
|
|
73
|
+
border-color: #e84335;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
.
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
76
|
+
.checkbox-wrap input:checked + .custom-checkbox svg,
|
|
77
|
+
.checkbox-wrap input:checked + .custom-checkbox-emp svg {
|
|
78
|
+
opacity: 1;
|
|
79
|
+
}
|
|
80
80
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
81
|
+
/* Disabled */
|
|
82
|
+
.checkbox-wrap input:disabled + .custom-checkbox,
|
|
83
|
+
.checkbox-wrap input:disabled + .custom-checkbox-emp {
|
|
84
|
+
opacity: 0.5;
|
|
85
|
+
cursor: not-allowed;
|
|
84
86
|
}
|
|
87
|
+
|
|
88
|
+
/* Label */
|
|
89
|
+
.checkbox-wrap .label {
|
|
90
|
+
margin-left: 48px;
|
|
91
|
+
font-size: 14px;
|
|
92
|
+
color: #333;
|
|
93
|
+
}
|
|
@@ -872,4 +872,65 @@
|
|
|
872
872
|
|
|
873
873
|
.main-home {
|
|
874
874
|
padding-top: 80px !important;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
.custom-stepper-card {
|
|
880
|
+
width: 280px;
|
|
881
|
+
background: #f3f3f3;
|
|
882
|
+
padding: 30px 24px;
|
|
883
|
+
border-radius: 10px;
|
|
884
|
+
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.stepper-row {
|
|
888
|
+
display: flex;
|
|
889
|
+
align-items: flex-start;
|
|
890
|
+
position: relative;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.stepper-left {
|
|
894
|
+
display: flex;
|
|
895
|
+
flex-direction: column;
|
|
896
|
+
align-items: center;
|
|
897
|
+
margin-right: 18px;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.step-circle {
|
|
901
|
+
width: 42px;
|
|
902
|
+
height: 42px;
|
|
903
|
+
border-radius: 50%;
|
|
904
|
+
background: #ffffff;
|
|
905
|
+
border: 2px solid #d6d9de;
|
|
906
|
+
display: flex;
|
|
907
|
+
align-items: center;
|
|
908
|
+
justify-content: center;
|
|
909
|
+
font-weight: 600;
|
|
910
|
+
color: #5c6670;
|
|
911
|
+
font-size: 16px;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.step-circle.active {
|
|
915
|
+
background: #5a6ee1;
|
|
916
|
+
color: white;
|
|
917
|
+
border: 6px solid #f5d9c8; /* peach outer ring */
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.step-line {
|
|
921
|
+
width: 2px;
|
|
922
|
+
height: 50px;
|
|
923
|
+
background: #d6d9de;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.step-label {
|
|
927
|
+
margin-top: 10px;
|
|
928
|
+
font-size: 15px;
|
|
929
|
+
color: #4b5563;
|
|
930
|
+
font-weight: 500;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.step-label.active-text {
|
|
934
|
+
color: #5a6ee1;
|
|
935
|
+
font-weight: 600;
|
|
875
936
|
}
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
.SubmitAndClearAllContainer {
|
|
44
44
|
width: 100%;
|
|
45
45
|
display: flex;
|
|
46
|
-
justify-content: end;
|
|
46
|
+
justify-content: flex-end;
|
|
47
47
|
align-items: center;
|
|
48
48
|
.clear-search {
|
|
49
49
|
width: 30%;
|
|
@@ -82,10 +82,13 @@
|
|
|
82
82
|
|
|
83
83
|
.filter-form {
|
|
84
84
|
height: fit-content;
|
|
85
|
+
border-radius: 6px;
|
|
86
|
+
background-color: #ffff;
|
|
85
87
|
}
|
|
86
88
|
|
|
87
89
|
.search-complaint-container {
|
|
88
90
|
flex-direction: column;
|
|
91
|
+
border-radius: 6px;
|
|
89
92
|
align-items: flex-start;
|
|
90
93
|
--bg-opacity: 1;
|
|
91
94
|
background-color: #fff;
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
|
|
33
33
|
display: flex;
|
|
34
34
|
align-items: center;
|
|
35
|
-
justify-content: start;
|
|
35
|
+
justify-content: flex-start;
|
|
36
36
|
color: #fff;
|
|
37
37
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
|
|
38
38
|
font-size: 14px;
|
|
@@ -65,6 +65,20 @@
|
|
|
65
65
|
padding-left: 20px;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
+
.breadcrumbs {
|
|
69
|
+
display: flex;
|
|
70
|
+
align-items: center;
|
|
71
|
+
gap: 6px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.right-section-wrapper {
|
|
75
|
+
display: flex;
|
|
76
|
+
align-items: center;
|
|
77
|
+
justify-content: space-between;
|
|
78
|
+
gap: 16px;
|
|
79
|
+
width: 100%;
|
|
80
|
+
}
|
|
81
|
+
|
|
68
82
|
.left-section {
|
|
69
83
|
display: flex;
|
|
70
84
|
gap: 10px;
|
|
@@ -22,8 +22,15 @@
|
|
|
22
22
|
height: 60px;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
+
&.spect-icon {
|
|
26
|
+
width: auto;
|
|
27
|
+
padding-right: 20px;
|
|
28
|
+
max-height: 50px;
|
|
29
|
+
}
|
|
30
|
+
|
|
25
31
|
&.state {
|
|
26
32
|
height: 50px;
|
|
33
|
+
max-height: 20px;
|
|
27
34
|
width: auto;
|
|
28
35
|
}
|
|
29
36
|
}
|
|
@@ -49,6 +56,7 @@
|
|
|
49
56
|
height: 43px;
|
|
50
57
|
width: 43px;
|
|
51
58
|
font-weight: 700;
|
|
59
|
+
text-align: center;
|
|
52
60
|
}
|
|
53
61
|
}
|
|
54
62
|
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
text-align: left;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.field-container {
|
|
16
|
+
.field-container {
|
|
17
|
+
}
|
|
17
18
|
|
|
18
19
|
button {
|
|
19
20
|
@extend .light-primary-button;
|
|
@@ -32,7 +33,6 @@
|
|
|
32
33
|
@screen dt {
|
|
33
34
|
.employee-app-container {
|
|
34
35
|
@apply w-full;
|
|
35
|
-
padding-inline: 0px;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.app-container {
|
|
@@ -61,4 +61,4 @@
|
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
|
-
}
|
|
64
|
+
}
|