@djb25/digit-ui-css 1.0.10 → 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 +33 -5
- 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/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
|
|
|
@@ -52,12 +52,6 @@
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
@screen dt {
|
|
55
|
-
.ground-container {
|
|
56
|
-
margin-bottom: 56px;
|
|
57
|
-
padding-left: 0px;
|
|
58
|
-
/* @apply p-md; */
|
|
59
|
-
}
|
|
60
|
-
|
|
61
55
|
.heading-m {
|
|
62
56
|
@apply text-heading-m-dt;
|
|
63
57
|
}
|
|
@@ -71,7 +65,8 @@
|
|
|
71
65
|
margin-bottom: 40px;
|
|
72
66
|
}
|
|
73
67
|
|
|
74
|
-
.employee-home-footer {
|
|
68
|
+
.employee-home-footer {
|
|
69
|
+
}
|
|
75
70
|
|
|
76
71
|
.moduleCardWrapper {
|
|
77
72
|
/* @apply flex flex-row flex-wrap !important; */
|
|
@@ -80,4 +75,4 @@
|
|
|
80
75
|
.gridModuleWrapper {
|
|
81
76
|
@apply grid grid-cols-4 gap-1;
|
|
82
77
|
}
|
|
83
|
-
}
|
|
78
|
+
}
|
|
@@ -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
|
}
|
|
@@ -433,8 +389,6 @@
|
|
|
433
389
|
display: flex;
|
|
434
390
|
justify-content: center;
|
|
435
391
|
align-items: center;
|
|
436
|
-
padding-left: 30px;
|
|
437
|
-
padding-right: 30px;
|
|
438
392
|
.header-top-section {
|
|
439
393
|
display: flex;
|
|
440
394
|
width: 100%;
|
|
@@ -456,7 +410,7 @@
|
|
|
456
410
|
|
|
457
411
|
.subtitle {
|
|
458
412
|
margin: 0;
|
|
459
|
-
|
|
413
|
+
font-size: 20px;
|
|
460
414
|
font-weight: 700;
|
|
461
415
|
color: #0f172a;
|
|
462
416
|
}
|
|
@@ -470,7 +424,7 @@
|
|
|
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;
|
|
@@ -500,6 +454,18 @@
|
|
|
500
454
|
padding-left: 20px;
|
|
501
455
|
}
|
|
502
456
|
|
|
457
|
+
.breadcrumbs {
|
|
458
|
+
display: flex;
|
|
459
|
+
align-items: center;
|
|
460
|
+
gap: 6px;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.extra-right-content {
|
|
464
|
+
display: flex;
|
|
465
|
+
align-items: center;
|
|
466
|
+
gap: 8px;
|
|
467
|
+
}
|
|
468
|
+
|
|
503
469
|
.left-section {
|
|
504
470
|
display: flex;
|
|
505
471
|
gap: 10px;
|
|
@@ -539,6 +505,7 @@
|
|
|
539
505
|
display: flex;
|
|
540
506
|
flex-direction: column;
|
|
541
507
|
padding-top: 80px;
|
|
508
|
+
height: 100vh;
|
|
542
509
|
/* margin-left: 72px; */
|
|
543
510
|
/* width: calc(100%-83px); */
|
|
544
511
|
}
|