@djb25/digit-ui-css 1.0.42 → 1.0.44

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djb25/digit-ui-css",
3
- "version": "1.0.42",
3
+ "version": "1.0.44",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "satyam",
@@ -1,5 +1,5 @@
1
1
  .search-form-wrapper {
2
- @apply w-full flex flex-wrap gap-5 justify-between bg-white;
2
+ @apply w-full flex-wrap gap-5 justify-between bg-white;
3
3
 
4
4
  padding: 20px;
5
5
  border-radius: 11px;
@@ -110,7 +110,7 @@ body {
110
110
  }
111
111
 
112
112
  @media (min-width: 1280px) {
113
- padding-inline: 64px;
113
+ padding-inline: 50px;
114
114
  }
115
115
  }
116
116
 
@@ -140,13 +140,12 @@ body {
140
140
  .form-container {
141
141
  display: flex;
142
142
  flex-direction: column;
143
- padding: 26px;
143
+ padding: 20px;
144
144
  width: 100%;
145
145
  gap: 12px;
146
146
 
147
147
  @media (min-width: 768px) {
148
- padding-right: 75px;
149
- padding-top: 33px;
148
+ padding-right: 55px;
150
149
  }
151
150
 
152
151
  .header {
@@ -1336,7 +1336,6 @@
1336
1336
  display: flex;
1337
1337
  flex-direction: column;
1338
1338
  gap: 8px;
1339
- padding: 0 16px;
1340
1339
  }
1341
1340
 
1342
1341
  .nav-link {
@@ -1416,7 +1415,7 @@
1416
1415
  }
1417
1416
 
1418
1417
  .collapsed .sidebar-header {
1419
- padding: 24px 0;
1418
+ padding: 15px 0;
1420
1419
  flex-direction: column;
1421
1420
  gap: 24px;
1422
1421
  justify-content: center;
@@ -31,9 +31,7 @@
31
31
  margin: 0;
32
32
  line-height: 1.1;
33
33
  }
34
-
35
-
36
- }
34
+ }
37
35
 
38
36
  img {
39
37
  display: inline;
@@ -44,7 +42,6 @@
44
42
 
45
43
  &.spect-icon {
46
44
  width: auto;
47
- padding-right: 20px;
48
45
  max-height: 50px;
49
46
  }
50
47
 
@@ -293,9 +290,10 @@ video::-webkit-media-controls-panel {
293
290
 
294
291
  .topbar-item-wrapper {
295
292
  display: flex !important;
293
+ flex-direction: row !important;
296
294
  align-items: center !important;
297
- gap: 10px !important;
298
- padding: 8px 14px !important;
295
+ gap: 8px !important;
296
+ padding: 6px 12px !important;
299
297
  border-radius: 8px !important;
300
298
  border: 1px solid #e5e7eb !important;
301
299
  background-color: #ffffff !important;
@@ -304,6 +302,29 @@ video::-webkit-media-controls-panel {
304
302
  font-weight: 500 !important;
305
303
  color: #1f2937 !important;
306
304
  white-space: nowrap !important;
305
+ height: 42px;
306
+ position: relative !important;
307
+
308
+ /* Reset absolute styles from dropdowns */
309
+ svg,
310
+ img,
311
+ span {
312
+ position: static !important;
313
+ right: auto !important;
314
+ top: auto !important;
315
+ margin: 0 !important;
316
+ float: none !important;
317
+ flex-shrink: 0 !important;
318
+ }
319
+
320
+ .chevron-icon {
321
+ display: flex !important;
322
+ align-items: center !important;
323
+ color: #4b5563 !important;
324
+ margin-left: 2px !important;
325
+ width: 14px !important;
326
+ height: 14px !important;
327
+ }
307
328
 
308
329
  @media (max-width: 1024px) {
309
330
  padding: 6px 10px !important;
@@ -338,7 +359,7 @@ video::-webkit-media-controls-panel {
338
359
  }
339
360
 
340
361
  .vertical-divider {
341
- width: 2px;
362
+ width: 1px;
342
363
  height: 28px;
343
364
  background-color: rgb(203, 213, 225);
344
365
 
package/src/index.scss CHANGED
@@ -913,20 +913,40 @@ input[type="number"] {
913
913
  height: 100%;
914
914
  }
915
915
 
916
- .flex-gap-1 {
916
+ .flex-box-content-between {
917
917
  display: flex;
918
- justify-content: center;
918
+ justify-content: space-between;
919
919
  align-items: center;
920
- gap: 4px;
920
+ width: 100%;
921
+ height: 100%;
921
922
  }
922
923
 
923
- .flex-gap-2 {
924
+ .flex-center {
924
925
  display: flex;
925
926
  justify-content: center;
926
927
  align-items: center;
928
+ }
929
+
930
+ .flex-gap-1 {
931
+ gap: 4px;
932
+ }
933
+
934
+ .flex-gap-2 {
927
935
  gap: 8px;
928
936
  }
929
937
 
938
+ .flex-gap-3 {
939
+ gap: 12px;
940
+ }
941
+
942
+ .flex-gap-4 {
943
+ gap: 16px;
944
+ }
945
+
946
+ .flex-gap-5 {
947
+ gap: 20px;
948
+ }
949
+
930
950
  .bc-white {
931
951
  background-color: #fff;
932
952
  }
@@ -1,3 +1,14 @@
1
+ .ekyc-module-header-wrapper {
2
+ justify-content: space-between !important;
3
+ padding: 0 20px;
4
+ }
5
+
6
+ .ekyc-module-header-container {
7
+ width: 100% !important;
8
+ max-width: 100% !important;
9
+ margin: 0 !important;
10
+ }
11
+
1
12
  .ekyc-employee-container {
2
13
  .inbox-main-container {
3
14
  flex: 1;
@@ -34,6 +45,11 @@
34
45
  border-right: none;
35
46
  }
36
47
 
48
+ .inbox-main-container {
49
+ flex: 1;
50
+ border-radius: 12px;
51
+ }
52
+
37
53
  .count {
38
54
  font-size: 32px;
39
55
  font-weight: 700;