@djb25/digit-ui-css 1.0.10 → 1.0.12
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/img/1.png +0 -0
- package/package.json +4 -3
- 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 +28 -32
- 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 +33 -5
- package/src/pages/citizen/DocumentList.scss +20 -21
- package/src/pages/citizen/updatePropertyNumber.scss +3 -2
- package/src/pages/employee/container.scss +31 -2
- package/src/pages/employee/ekyc.scss +138 -0
- package/src/pages/employee/inbox.scss +21 -12
- package/src/pages/employee/index.scss +29 -60
package/src/index.scss
CHANGED
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
@import "./components/inputotp.scss";
|
|
29
29
|
@import "./components/map.scss";
|
|
30
30
|
@import "./pages/employee/tooltip.scss";
|
|
31
|
-
@import "./components/menu.scss";
|
|
32
31
|
@import "./components/submiterrors.scss";
|
|
33
32
|
@import "./components/ratingstar.scss";
|
|
34
33
|
@import "./components/keynote.scss";
|
|
@@ -90,6 +89,7 @@
|
|
|
90
89
|
@import "./pages/employee/container.scss";
|
|
91
90
|
@import "./pages/employee/inbox.scss";
|
|
92
91
|
@import "./pages/employee/response.scss";
|
|
92
|
+
@import "./pages/employee/ekyc.scss";
|
|
93
93
|
@import "./pages/employee/form-fields.scss";
|
|
94
94
|
@import "./pages/employee/scroll-table.scss";
|
|
95
95
|
@import "./pages/employee/EmployeeLogin.scss";
|
|
@@ -632,7 +632,8 @@ input[type="number"] {
|
|
|
632
632
|
}
|
|
633
633
|
}
|
|
634
634
|
|
|
635
|
-
.applications-list-container {
|
|
635
|
+
.applications-list-container {
|
|
636
|
+
}
|
|
636
637
|
|
|
637
638
|
.complaint-summary {
|
|
638
639
|
@media (min-width: 780px) {
|
|
@@ -662,7 +663,6 @@ input[type="number"] {
|
|
|
662
663
|
}
|
|
663
664
|
|
|
664
665
|
@media (min-width: 780px) {
|
|
665
|
-
|
|
666
666
|
.citizen-obps-wrapper,
|
|
667
667
|
.pgr-citizen-wrapper,
|
|
668
668
|
.pt-citizen,
|
|
@@ -689,15 +689,21 @@ input[type="number"] {
|
|
|
689
689
|
}
|
|
690
690
|
|
|
691
691
|
@media only screen and (max-width: 768px) {
|
|
692
|
-
|
|
693
692
|
/* For mobile phones: */
|
|
694
693
|
.error-boundary {
|
|
695
694
|
height: 75vh;
|
|
696
695
|
}
|
|
697
696
|
}
|
|
698
697
|
|
|
698
|
+
.app-wrapper {
|
|
699
|
+
width: 100%;
|
|
700
|
+
flex: 1;
|
|
701
|
+
overflow-y: scroll;
|
|
702
|
+
}
|
|
703
|
+
|
|
699
704
|
.employee-app-wrapper {
|
|
700
705
|
min-height: calc(100vh - 8em);
|
|
706
|
+
height: calc(100vh - 125px);
|
|
701
707
|
}
|
|
702
708
|
|
|
703
709
|
.ws-custom-wrapper {
|
|
@@ -807,4 +813,26 @@ input[type="number"] {
|
|
|
807
813
|
margin-right: -27%;
|
|
808
814
|
max-height: 120px;
|
|
809
815
|
margin-top: 90px;
|
|
810
|
-
}
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.flex-box {
|
|
819
|
+
display: flex;
|
|
820
|
+
width: 100%;
|
|
821
|
+
height: 100%;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.flex-box-center {
|
|
825
|
+
display: flex;
|
|
826
|
+
justify-content: center;
|
|
827
|
+
align-items: center;
|
|
828
|
+
width: 100%;
|
|
829
|
+
height: 100%;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.bc-white {
|
|
833
|
+
background-color: #fff;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.round-medium {
|
|
837
|
+
border-radius: 6px;
|
|
838
|
+
}
|
|
@@ -91,13 +91,13 @@
|
|
|
91
91
|
font-weight: normal;
|
|
92
92
|
font-size: 10px;
|
|
93
93
|
line-height: 18px;
|
|
94
|
-
color: #
|
|
94
|
+
color: #a3a3a3;
|
|
95
95
|
}
|
|
96
96
|
.view_download_main {
|
|
97
97
|
display: flex;
|
|
98
98
|
flex-wrap: wrap;
|
|
99
|
-
gap:8px;
|
|
100
|
-
align-items: end;
|
|
99
|
+
gap: 8px;
|
|
100
|
+
align-items: flex-end;
|
|
101
101
|
span {
|
|
102
102
|
padding-right: 20px;
|
|
103
103
|
& .views {
|
|
@@ -113,13 +113,13 @@
|
|
|
113
113
|
}
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
|
-
& .download_views_padding{
|
|
117
|
-
|
|
116
|
+
& .download_views_padding {
|
|
117
|
+
padding-top: 8px;
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
|
-
@screen dt{
|
|
120
|
+
@screen dt {
|
|
121
121
|
.view_download_main {
|
|
122
|
-
span{
|
|
122
|
+
span {
|
|
123
123
|
& .views {
|
|
124
124
|
display: flex;
|
|
125
125
|
justify-content: space-between;
|
|
@@ -138,11 +138,11 @@
|
|
|
138
138
|
.notice_and_circular_heading_mb .card-caption {
|
|
139
139
|
font-size: 16px;
|
|
140
140
|
line-height: 24px;
|
|
141
|
-
min-width
|
|
141
|
+
min-width: 150px;
|
|
142
142
|
padding-left: 50px;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
.view_download_main span{
|
|
145
|
+
.view_download_main span {
|
|
146
146
|
padding-right: 30px;
|
|
147
147
|
}
|
|
148
148
|
.view_download_main span .views p {
|
|
@@ -151,22 +151,21 @@
|
|
|
151
151
|
}
|
|
152
152
|
.notice_and_circular_text p {
|
|
153
153
|
font-size: 16px !important;
|
|
154
|
-
line-height
|
|
154
|
+
line-height: 24px;
|
|
155
155
|
}
|
|
156
156
|
.documentDetails_row {
|
|
157
157
|
grid-gap: 0 !important;
|
|
158
158
|
gap: 0 !important;
|
|
159
159
|
}
|
|
160
|
-
.notice_and_circular_heading_mb header{
|
|
160
|
+
.notice_and_circular_heading_mb header {
|
|
161
161
|
font-size: 24px !important;
|
|
162
162
|
line-height: 28px;
|
|
163
|
-
margin-right
|
|
163
|
+
margin-right: 100px;
|
|
164
164
|
}
|
|
165
165
|
.notice_and_circular_caption .card-caption {
|
|
166
166
|
font-size: 14px;
|
|
167
167
|
line-height: 21px;
|
|
168
168
|
}
|
|
169
|
-
|
|
170
169
|
}
|
|
171
170
|
.documentDetails {
|
|
172
171
|
&_wrapper {
|
|
@@ -282,24 +281,24 @@
|
|
|
282
281
|
text-overflow: ellipsis;
|
|
283
282
|
}
|
|
284
283
|
|
|
285
|
-
.Docs_CardWrapper{
|
|
284
|
+
.Docs_CardWrapper {
|
|
286
285
|
@apply bg-white m-sm px-md pt-md pb-lg shadow-card;
|
|
287
286
|
border-radius: 4px;
|
|
288
287
|
}
|
|
289
288
|
|
|
290
|
-
.mobileInbox_attachments{
|
|
291
|
-
display:flex;
|
|
292
|
-
gap:10px;
|
|
289
|
+
.mobileInbox_attachments {
|
|
290
|
+
display: flex;
|
|
291
|
+
gap: 10px;
|
|
293
292
|
}
|
|
294
293
|
|
|
295
294
|
.documentDetails_row_items {
|
|
296
|
-
display:flex;
|
|
295
|
+
display: flex;
|
|
297
296
|
flex-direction: row;
|
|
298
297
|
align-self: flex-start;
|
|
299
298
|
}
|
|
300
299
|
|
|
301
|
-
@media screen and (max-width
|
|
302
|
-
.documentDetails_row_items{
|
|
300
|
+
@media screen and (max-width: 768px) {
|
|
301
|
+
.documentDetails_row_items {
|
|
303
302
|
@apply grid grid-cols-2 gap-4;
|
|
304
303
|
}
|
|
305
|
-
}
|
|
304
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.updatenumber-warper-citizen{
|
|
1
|
+
.updatenumber-warper-citizen {
|
|
2
2
|
min-height: 95vh;
|
|
3
3
|
height: unset;
|
|
4
4
|
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
@apply m-md;
|
|
8
8
|
}
|
|
9
9
|
.search-form-wrapper {
|
|
10
|
+
border-radius: 6px;
|
|
10
11
|
display: inherit;
|
|
11
12
|
padding: 16px;
|
|
12
13
|
.submit-bar {
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
}
|
|
24
25
|
|
|
25
26
|
@screen dt {
|
|
26
|
-
.updatenumber-warper-citizen{
|
|
27
|
+
.updatenumber-warper-citizen {
|
|
27
28
|
min-height: 100vh;
|
|
28
29
|
height: unset;
|
|
29
30
|
}
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
@apply flex fixed bottom-0 h-10 bg-grey-bg pb-md pt-sm justify-center w-full;
|
|
32
32
|
|
|
33
33
|
img {
|
|
34
|
-
@apply ml-sm
|
|
34
|
+
@apply ml-sm;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
@@ -51,13 +51,41 @@
|
|
|
51
51
|
min-width: 280px;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
+
.collapsible-sidebar-container {
|
|
55
|
+
flex-shrink: 0;
|
|
56
|
+
border-right: 1px solid #e0e0e0;
|
|
57
|
+
background: #f8f9fa;
|
|
58
|
+
transition: width 0.3s ease;
|
|
59
|
+
width: 100%;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.employee-app-wrapper {
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-direction: column;
|
|
65
|
+
width: 100%;
|
|
66
|
+
min-height: calc(100vh - 90px);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.employee-app-container-inner {
|
|
70
|
+
flex: 1;
|
|
71
|
+
overflow-x: hidden;
|
|
72
|
+
width: 100%;
|
|
73
|
+
}
|
|
74
|
+
|
|
54
75
|
@screen dt {
|
|
76
|
+
.employee-app-wrapper {
|
|
77
|
+
flex-direction: row;
|
|
78
|
+
}
|
|
79
|
+
|
|
55
80
|
.ground-container {
|
|
56
81
|
margin-bottom: 56px;
|
|
57
|
-
padding-left: 0px;
|
|
58
82
|
/* @apply p-md; */
|
|
59
83
|
}
|
|
60
84
|
|
|
85
|
+
.collapsible-sidebar-container {
|
|
86
|
+
width: auto;
|
|
87
|
+
}
|
|
88
|
+
|
|
61
89
|
.heading-m {
|
|
62
90
|
@apply text-heading-m-dt;
|
|
63
91
|
}
|
|
@@ -79,5 +107,6 @@
|
|
|
79
107
|
|
|
80
108
|
.gridModuleWrapper {
|
|
81
109
|
@apply grid grid-cols-4 gap-1;
|
|
110
|
+
gap: 20px;
|
|
82
111
|
}
|
|
83
112
|
}
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
.ekyc-employee-container {
|
|
2
|
+
.inbox-main-container {
|
|
3
|
+
flex: 1;
|
|
4
|
+
padding-right: -24px;
|
|
5
|
+
background-color: #f4f7f9;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.inbox-wrapper {
|
|
9
|
+
min-width: 100%;
|
|
10
|
+
padding: 24px;
|
|
11
|
+
background-color: rgb(241 241 241);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.ekyc-header-container {
|
|
15
|
+
display: flex;
|
|
16
|
+
justify-content: space-between;
|
|
17
|
+
align-items: center;
|
|
18
|
+
margin-bottom: 24px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.ekyc-status-container {
|
|
22
|
+
display: flex;
|
|
23
|
+
gap: 24px;
|
|
24
|
+
margin-bottom: 32px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ekyc-status-card {
|
|
28
|
+
flex: 1;
|
|
29
|
+
text-align: center;
|
|
30
|
+
padding: 24px;
|
|
31
|
+
border: 1px solid #EAECF0;
|
|
32
|
+
border-radius: 12px;
|
|
33
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
34
|
+
|
|
35
|
+
.count {
|
|
36
|
+
font-size: 32px;
|
|
37
|
+
font-weight: 700;
|
|
38
|
+
color: #101828;
|
|
39
|
+
|
|
40
|
+
&.pending {
|
|
41
|
+
color: #B54708;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.completed {
|
|
45
|
+
color: #027A48;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.label {
|
|
50
|
+
color: #667085;
|
|
51
|
+
margin-top: 8px;
|
|
52
|
+
font-size: 14px;
|
|
53
|
+
font-weight: 500;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.ekyc-search-card {
|
|
58
|
+
margin-bottom: 24px;
|
|
59
|
+
padding: 20px;
|
|
60
|
+
background-color: #fff;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.ekyc-search-container {
|
|
64
|
+
flex: 1;
|
|
65
|
+
|
|
66
|
+
.search-inner {
|
|
67
|
+
padding: 0px;
|
|
68
|
+
background-color: #fff;
|
|
69
|
+
border: none;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.input-grid {
|
|
73
|
+
display: grid;
|
|
74
|
+
gap: 20px;
|
|
75
|
+
align-items: end;
|
|
76
|
+
grid-template-columns: repeat(auto-fill, minmax(700px, 1fr));
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.submit-wrapper {
|
|
80
|
+
display: flex;
|
|
81
|
+
align-items: center;
|
|
82
|
+
gap: 20px;
|
|
83
|
+
height: 40px;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.ekyc-table-card {
|
|
88
|
+
padding: 0px;
|
|
89
|
+
overflow: hidden;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.ekyc-status-tag {
|
|
93
|
+
padding: 6px 12px;
|
|
94
|
+
border-radius: 20px;
|
|
95
|
+
font-size: 12px;
|
|
96
|
+
font-weight: 600;
|
|
97
|
+
text-transform: uppercase;
|
|
98
|
+
|
|
99
|
+
&.ALL {
|
|
100
|
+
background-color: #F4F4F4;
|
|
101
|
+
color: #505A5F;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
&.COMPLETED {
|
|
105
|
+
background-color: #E7F4E9;
|
|
106
|
+
color: #0B6623;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
&.PENDING {
|
|
110
|
+
background-color: #FFF5E6;
|
|
111
|
+
color: #945700;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&.REJECTED {
|
|
115
|
+
background-color: #FBEAE9;
|
|
116
|
+
color: #AF1E11;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
&.DEFAULT {
|
|
120
|
+
background-color: #F4F4F4;
|
|
121
|
+
color: #505A5F;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.ekyc-metrics-section {
|
|
126
|
+
margin-bottom: 24px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.ekyc-table-cell {
|
|
130
|
+
padding: 20px 18px;
|
|
131
|
+
font-size: 16px;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.ekyc-application-link {
|
|
135
|
+
font-weight: 600;
|
|
136
|
+
color: #F47738;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
@@ -2,12 +2,15 @@
|
|
|
2
2
|
/* @apply bg-white; */
|
|
3
3
|
/* border-radius: 4px; */
|
|
4
4
|
|
|
5
|
+
padding: 8px;
|
|
5
6
|
.header {
|
|
6
7
|
/* @apply flex items-center border-b border-border justify-between; */
|
|
7
|
-
|
|
8
|
+
display: flex;
|
|
8
9
|
.logo {
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
width: auto;
|
|
13
|
+
aspect-ratio: 1/1;
|
|
11
14
|
@apply bg-focus;
|
|
12
15
|
padding: 0px;
|
|
13
16
|
border-radius: 4px;
|
|
@@ -34,7 +37,7 @@
|
|
|
34
37
|
|
|
35
38
|
a {
|
|
36
39
|
color: inherit;
|
|
37
|
-
text-decoration: inherit
|
|
40
|
+
text-decoration: inherit;
|
|
38
41
|
}
|
|
39
42
|
}
|
|
40
43
|
|
|
@@ -99,6 +102,7 @@
|
|
|
99
102
|
|
|
100
103
|
.filter-form {
|
|
101
104
|
.filter-card {
|
|
105
|
+
border-radius: 6px;
|
|
102
106
|
@apply bg-white min-h-full;
|
|
103
107
|
padding: 10px;
|
|
104
108
|
|
|
@@ -188,7 +192,8 @@
|
|
|
188
192
|
}
|
|
189
193
|
}
|
|
190
194
|
|
|
191
|
-
.mobile-input {
|
|
195
|
+
.mobile-input {
|
|
196
|
+
}
|
|
192
197
|
}
|
|
193
198
|
}
|
|
194
199
|
}
|
|
@@ -223,7 +228,7 @@
|
|
|
223
228
|
|
|
224
229
|
.header {
|
|
225
230
|
/* @apply flex items-center border-b border-border; */
|
|
226
|
-
|
|
231
|
+
display: flex;
|
|
227
232
|
.logo {
|
|
228
233
|
@apply bg-focus;
|
|
229
234
|
padding: 0px;
|
|
@@ -249,15 +254,18 @@
|
|
|
249
254
|
|
|
250
255
|
.inboxLinks {
|
|
251
256
|
margin: 0 !important;
|
|
252
|
-
padding:
|
|
253
|
-
|
|
257
|
+
padding: 8px !important;
|
|
258
|
+
background: #fff;
|
|
259
|
+
border-radius: 6px;
|
|
254
260
|
.header {
|
|
261
|
+
display: flex;
|
|
255
262
|
border: none;
|
|
256
263
|
@apply justify-start;
|
|
257
|
-
|
|
264
|
+
align-items: center;
|
|
258
265
|
.logo {
|
|
259
266
|
@apply bg-white;
|
|
260
|
-
|
|
267
|
+
display: flex;
|
|
268
|
+
align-items: center;
|
|
261
269
|
svg {
|
|
262
270
|
path {
|
|
263
271
|
fill: theme(colors.primary.main);
|
|
@@ -418,7 +426,8 @@
|
|
|
418
426
|
}
|
|
419
427
|
}
|
|
420
428
|
|
|
421
|
-
.search-complaint-container-for-search {
|
|
429
|
+
.search-complaint-container-for-search {
|
|
430
|
+
}
|
|
422
431
|
}
|
|
423
432
|
}
|
|
424
433
|
}
|
|
@@ -632,4 +641,4 @@
|
|
|
632
641
|
}
|
|
633
642
|
}
|
|
634
643
|
}
|
|
635
|
-
}
|
|
644
|
+
}
|
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
.ground-container {
|
|
10
10
|
margin-bottom: 56px;
|
|
11
|
-
|
|
12
|
-
/* @apply flex flex-col; */
|
|
11
|
+
/* @apply p-md; */
|
|
13
12
|
}
|
|
14
13
|
|
|
15
14
|
.card-home {
|
|
@@ -28,49 +27,6 @@
|
|
|
28
27
|
box-shadow: 0px 6px 0 0px #764ba2;
|
|
29
28
|
}
|
|
30
29
|
|
|
31
|
-
.topbar {
|
|
32
|
-
position: fixed;
|
|
33
|
-
top: 0;
|
|
34
|
-
width: 100%;
|
|
35
|
-
background: white;
|
|
36
|
-
box-shadow: rgba(0, 0, 0, 0.24) 0 1px 4px;
|
|
37
|
-
z-index: 9999;
|
|
38
|
-
|
|
39
|
-
.topbar-content {
|
|
40
|
-
display: flex;
|
|
41
|
-
justify-content: space-between;
|
|
42
|
-
align-items: center;
|
|
43
|
-
width: 100%;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
img {
|
|
47
|
-
display: inline;
|
|
48
|
-
|
|
49
|
-
&.city {
|
|
50
|
-
height: 60px;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&.spect-icon {
|
|
54
|
-
width: auto;
|
|
55
|
-
max-height: 50px;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
&.state {
|
|
59
|
-
height: 20px;
|
|
60
|
-
max-height: 20px;
|
|
61
|
-
width: auto;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.ulb {
|
|
66
|
-
font-weight: bold;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.right {
|
|
70
|
-
float: right;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
30
|
.main {
|
|
75
31
|
padding-top: 88px;
|
|
76
32
|
}
|
|
@@ -261,8 +217,7 @@
|
|
|
261
217
|
&.active {
|
|
262
218
|
border-left: 4px solid theme(colors.primary.main);
|
|
263
219
|
|
|
264
|
-
&.level-0 {
|
|
265
|
-
}
|
|
220
|
+
&.level-0 {}
|
|
266
221
|
|
|
267
222
|
&.level-1 {
|
|
268
223
|
border-left: 8.5px solid theme(colors.primary.main);
|
|
@@ -272,8 +227,7 @@
|
|
|
272
227
|
border-left: 4px solid theme(colors.primary.main);
|
|
273
228
|
}
|
|
274
229
|
|
|
275
|
-
&.level-3 {
|
|
276
|
-
}
|
|
230
|
+
&.level-3 {}
|
|
277
231
|
|
|
278
232
|
color: theme(colors.primary.main) !important;
|
|
279
233
|
border-right: none;
|
|
@@ -433,8 +387,6 @@
|
|
|
433
387
|
display: flex;
|
|
434
388
|
justify-content: center;
|
|
435
389
|
align-items: center;
|
|
436
|
-
padding-left: 30px;
|
|
437
|
-
padding-right: 30px;
|
|
438
390
|
.header-top-section {
|
|
439
391
|
display: flex;
|
|
440
392
|
width: 100%;
|
|
@@ -442,8 +394,10 @@
|
|
|
442
394
|
padding: 14px;
|
|
443
395
|
border-radius: 11px;
|
|
444
396
|
|
|
445
|
-
|
|
446
|
-
align-items:
|
|
397
|
+
|
|
398
|
+
align-items: flex-end;
|
|
399
|
+
justify-content: flex-end;
|
|
400
|
+
gap: 10px;
|
|
447
401
|
|
|
448
402
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
|
|
449
403
|
|
|
@@ -451,14 +405,14 @@
|
|
|
451
405
|
margin: 0;
|
|
452
406
|
font-size: 25px;
|
|
453
407
|
font-weight: 700;
|
|
454
|
-
color: #
|
|
408
|
+
color: #ffffff;
|
|
455
409
|
}
|
|
456
410
|
|
|
457
411
|
.subtitle {
|
|
458
412
|
margin: 0;
|
|
459
|
-
|
|
413
|
+
font-size: 20px;
|
|
460
414
|
font-weight: 700;
|
|
461
|
-
color: #
|
|
415
|
+
color: #ffffff;
|
|
462
416
|
}
|
|
463
417
|
}
|
|
464
418
|
|
|
@@ -470,21 +424,24 @@
|
|
|
470
424
|
|
|
471
425
|
display: flex;
|
|
472
426
|
align-items: center;
|
|
473
|
-
justify-content: start;
|
|
427
|
+
justify-content: flex-start;
|
|
474
428
|
color: #fff;
|
|
475
429
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
|
|
476
430
|
font-size: 14px;
|
|
477
431
|
font-weight: 500;
|
|
432
|
+
|
|
478
433
|
.icon {
|
|
479
434
|
width: 35px;
|
|
480
435
|
aspect-ratio: 1/1;
|
|
481
436
|
fill: #fff;
|
|
482
437
|
}
|
|
438
|
+
|
|
483
439
|
.home-icon {
|
|
484
440
|
width: 24px;
|
|
485
441
|
aspect-ratio: 1/1;
|
|
486
442
|
fill: #fff;
|
|
487
443
|
}
|
|
444
|
+
|
|
488
445
|
.iconn {
|
|
489
446
|
font-feature-settings: "kern";
|
|
490
447
|
font-size: 16px;
|
|
@@ -500,6 +457,18 @@
|
|
|
500
457
|
padding-left: 20px;
|
|
501
458
|
}
|
|
502
459
|
|
|
460
|
+
.breadcrumbs {
|
|
461
|
+
display: flex;
|
|
462
|
+
align-items: center;
|
|
463
|
+
gap: 6px;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.extra-right-content {
|
|
467
|
+
display: flex;
|
|
468
|
+
align-items: center;
|
|
469
|
+
gap: 8px;
|
|
470
|
+
}
|
|
471
|
+
|
|
503
472
|
.left-section {
|
|
504
473
|
display: flex;
|
|
505
474
|
gap: 10px;
|
|
@@ -539,6 +508,7 @@
|
|
|
539
508
|
display: flex;
|
|
540
509
|
flex-direction: column;
|
|
541
510
|
padding-top: 80px;
|
|
511
|
+
height: 100vh;
|
|
542
512
|
/* margin-left: 72px; */
|
|
543
513
|
/* width: calc(100%-83px); */
|
|
544
514
|
}
|
|
@@ -561,8 +531,7 @@
|
|
|
561
531
|
justify-content: center;
|
|
562
532
|
}
|
|
563
533
|
|
|
564
|
-
.center-container {
|
|
565
|
-
}
|
|
534
|
+
.center-container {}
|
|
566
535
|
}
|
|
567
536
|
}
|
|
568
537
|
|
|
@@ -696,4 +665,4 @@
|
|
|
696
665
|
/* TODO fix required NABEEL/ANIL for home screen card */
|
|
697
666
|
.customEmployeeCard {
|
|
698
667
|
@apply m-sm !important;
|
|
699
|
-
}
|
|
668
|
+
}
|