herald-exchange-offramp-widget 1.0.0 → 1.0.2

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": "herald-exchange-offramp-widget",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -55,4 +55,4 @@
55
55
  "stream": false,
56
56
  "crypto": false
57
57
  }
58
- }
58
+ }
@@ -22,25 +22,14 @@
22
22
  }
23
23
 
24
24
  :root {
25
- --primary-set-color: #f9c201;
26
- --secondary-set-color: #ffffff;
27
- --tertiary-set-color: #000;
28
- /* --quaternary-set-color: #878E96; */
29
- --quaternary-set-color: #6b7178;
30
- /* --bg-hover: #fffbf3; */
31
- --senary-set-color: #298bff;
32
- --overlay-set-bg: #f5f5f5;
33
- /* --new-action-gradient: linear-gradient(180deg, #ffffff 39.57%, rgb(249 246 246)); */
34
- /* --badges-success-bg: #f9fcf0; */
35
- /* --badges-success-color: #7ab200; */
36
- --badges-set-faile-color: #ff2222;
37
- /* --badges-pending-bg: #e89a3c21; */
38
- /* --badges-faile-bg: rgb(237 56 51 / 5%); */
39
- /* --new-placeholder: #d2d2d2; */
40
- --light-set-color: #fff;
25
+
26
+ --primary-set-color: #000;
41
27
  --no-set-color: transparent;
42
- /* border */
43
- --border-set-color: #e5eaf4;
28
+ --off-white-border:#e5e5e5;
29
+ --off-white:#fff;
30
+ --off-white-black:#0a0a0a;
31
+ --off-white-text:#0a0a0a99;
32
+ --badges-set-faile-color: #ff2222;
44
33
  }
45
34
 
46
35
  /*------------- Body -------------*/
@@ -53,8 +42,8 @@ body {
53
42
  overflow-x: hidden;
54
43
  position: relative;
55
44
  font-family: "Red Hat Text", sans-serif;
56
- color: var(--tertiary-set-color);
57
- background-color: var(--secondary-set-color);
45
+ color: var(--primary-set-color);
46
+ background-color: var(--off-white);
58
47
  /* font-size:calc(.5 * (1.5vh + 1.1vw)) !important; */
59
48
  font-size: 12px !important;
60
49
  letter-spacing: 0.8px;
@@ -102,7 +91,7 @@ button:disabled {
102
91
 
103
92
  .actionBtn {
104
93
  --_background: var(--background, var(--primary-set-color));
105
- --_color: var(--color, var(--tertiary-set-color));
94
+ --_color: var(--color, var(--primary-set-color));
106
95
  --_border: var(--border, transparent);
107
96
  --_btn-width: var(--btn-width, auto);
108
97
  background: var(--_background);
@@ -127,7 +116,7 @@ button:disabled {
127
116
  align-items: center;
128
117
  gap: 0.5em;
129
118
  justify-content: center;
130
- font-size: 0.85em;
119
+ font-size: 0.95em;
131
120
  font-weight: 600;
132
121
  z-index: 0;
133
122
  font-family: "Red Hat Text", sans-serif;
@@ -135,23 +124,23 @@ button:disabled {
135
124
 
136
125
  .primary {
137
126
  --background: var(--primary-set-color);
138
- --color: var(--tertiary-set-color);
127
+ --color: var(--off-white);
139
128
  --btn-width: 100%;
140
129
  --border: transparent;
141
130
  }
142
131
 
143
132
  .secondary {
144
133
  --background: #f9f9f9;
145
- --color: var(--tertiary-set-color);
134
+ --color: var(--primary-set-color);
146
135
  --btn-width: auto;
147
136
  --border: transparent;
148
137
  }
149
138
 
150
139
  .overlay {
151
- --background: transparent;
152
- --color: var(--tertiary-set-color);
140
+ --background: var(--off-white);
141
+ --color: var(--primary-set-color);
153
142
  --btn-width: auto;
154
- --border: #e5eaf4;
143
+ --border: var(--off-white);
155
144
  padding: 0.5em;
156
145
  }
157
146
 
@@ -185,7 +174,7 @@ button:disabled {
185
174
  }
186
175
 
187
176
  .widegt-tabs-box button.active {
188
- background: var(--secondary-set-color);
177
+ background: var(--off-white);
189
178
  border-radius: 10px;
190
179
  }
191
180
 
@@ -233,8 +222,12 @@ button:disabled {
233
222
  display: block;
234
223
  min-width: 600px;
235
224
  max-width: 600px;
236
- min-height: 600px;
237
- overflow: hidden;
225
+ min-height: 550px;
226
+ position: relative;
227
+ border: 1px solid var(--off-white-border);
228
+ border-radius: 12px;
229
+ background: linear-gradient(rgba(78, 134, 242, 0.05) 0%, rgba(255, 73, 128, 0.05) 100%) rgba(0, 0, 0, 0);
230
+ padding: 2em;
238
231
  }
239
232
 
240
233
 
@@ -248,7 +241,6 @@ button:disabled {
248
241
  min-width: unset !important;
249
242
  max-width: unset !important;
250
243
  border-radius: 0px;
251
- padding: 0em !important;
252
244
  }
253
245
  .exchangeWidgetContent ,.widegtTabsConten{
254
246
  padding: 1em !important;
@@ -283,7 +275,7 @@ button:disabled {
283
275
  .offRampFieldLabel {
284
276
  font-size: 1em;
285
277
  font-weight: 600;
286
- color: #010101;
278
+ color: var(--off-white-black);
287
279
  margin-bottom: 0.5em;
288
280
  }
289
281
 
@@ -321,7 +313,7 @@ button:disabled {
321
313
  }
322
314
 
323
315
  .offRampNewBankBox .inputControl {
324
- background: var(--light-set-color);
316
+ background: var(--off-white-border);
325
317
  border: 0;
326
318
  border-radius: 0;
327
319
  height: 45px;
@@ -329,7 +321,7 @@ button:disabled {
329
321
  font-size: 1.8em;
330
322
  font-weight: 600;
331
323
  width: 100%;
332
- color: #7d7d7d;
324
+ color: var(--primary-set-color);
333
325
  padding-left: 0;
334
326
  }
335
327
 
@@ -337,12 +329,12 @@ button:disabled {
337
329
  .offRampNewBankBox .inputControl:active,
338
330
  .offRampNewBankBox .inputControl:focus-within,
339
331
  .offRampNewBankBox .inputControl:focus-visible {
340
- background: var(--light-set-color);
332
+ background: var(--off-white);
341
333
  border: 0;
342
334
  outline: 0;
343
335
  }
344
336
  .offRampNewBankBox .inputControl:focus-visible {
345
- background: var(--light-set-color);
337
+ background: var(--off-white);
346
338
  border: 0;
347
339
  outline: 0;
348
340
  }
@@ -356,8 +348,8 @@ button:disabled {
356
348
  }
357
349
 
358
350
  .offRampModalImg {
359
- width: 1.5em;
360
- height: 1.5em;
351
+ width: 2em;
352
+ height: 2em;
361
353
  object-fit: contain;
362
354
  }
363
355
 
@@ -389,6 +381,8 @@ button:disabled {
389
381
 
390
382
  .offRampFieldCard {
391
383
  display: flex;
384
+ /* border: 1px solid var(--off-white-border); */
385
+ background-color: var(--off-white);
392
386
  }
393
387
  @media (max-width: 767.98px) {
394
388
  .offRampFieldCard {
@@ -418,7 +412,6 @@ button:disabled {
418
412
  }
419
413
  .offRampFieldBox {
420
414
  width: 75%;
421
- background: #fff9;
422
415
  padding: 1em;
423
416
  border-bottom-left-radius: 10px;
424
417
  border-top-left-radius: 10px;
@@ -429,7 +422,6 @@ button:disabled {
429
422
 
430
423
  .offRampFieldSelectCard {
431
424
  width: 50%;
432
- background-color: #f8f9fa;
433
425
  padding: 1em;
434
426
  border-bottom-right-radius: 10px;
435
427
  border-top-right-radius: 10px;
@@ -443,7 +435,7 @@ button:disabled {
443
435
  height: 2em;
444
436
  display: grid;
445
437
  place-items: center;
446
- background-color: #f8f9fa;
438
+ background-color: var(--primary-set-color);
447
439
  border-radius: 50%;
448
440
  font-weight: 700;
449
441
  font-size: 1.2em;
@@ -465,13 +457,13 @@ button:disabled {
465
457
 
466
458
  .offRampSpace {
467
459
  display: grid;
468
- grid-template-columns: 70px auto;
460
+ grid-template-columns: 50px auto;
469
461
  align-items: center;
470
462
  }
471
463
 
472
464
  .offRampSpaceTop {
473
465
  display: grid;
474
- grid-template-columns: 70px auto;
466
+ grid-template-columns: 50px auto;
475
467
  align-items: start;
476
468
  }
477
469
 
@@ -479,7 +471,7 @@ button:disabled {
479
471
  width: 1em;
480
472
  height: 1em;
481
473
  border-radius: 50%;
482
- background-color: #f8f9fa;
474
+ background-color: var(--primary-set-color);
483
475
  margin-left: 10px;
484
476
  }
485
477
 
@@ -495,12 +487,12 @@ button:disabled {
495
487
  align-items: center;
496
488
  justify-content: space-between;
497
489
  gap: 8px;
498
- border: 1px solid #fff;
490
+ border: 1px solid var(--off-white);
491
+ background-color: var(--off-white-border);
499
492
  border-radius: 8px;
500
493
  padding: 10px 15px;
501
494
  cursor: pointer;
502
495
  transition: all 0.3s ease;
503
- background-color: var(--secondary-set-color);
504
496
  position: relative;
505
497
  }
506
498
 
@@ -535,10 +527,10 @@ button:disabled {
535
527
  .offRampInfoBox::after {
536
528
  content: "";
537
529
  position: absolute;
538
- width: 2px;
530
+ width: 1px;
539
531
  height: 100%;
540
532
  top: 0;
541
- background: #ffffff73;
533
+ background: var(--off-white-border);
542
534
  left: 15px;
543
535
  z-index: -1;
544
536
  }
@@ -622,7 +614,7 @@ button:disabled {
622
614
  .cautionInfo {
623
615
  font-size: 0.8em;
624
616
  font-weight: 400;
625
- color: var(--tertiary-set-color);
617
+ color: var(--primary-set-color);
626
618
  line-height: 1.8;
627
619
  }
628
620
 
@@ -635,25 +627,26 @@ button:disabled {
635
627
 
636
628
  .offRampNewBankFields .inputControl {
637
629
  height: 45px;
638
- background-color: var(--secondary-set-color);
630
+ background-color: var(--off-white-border);
639
631
  width: 100%;
640
- border: 1px soild var(--secondary-set-color);
632
+ border: 1px soild var(--off-white-border);
641
633
  border-radius: 10px;
642
634
  padding: 10px;
643
- font-size: 0.9em !important;
635
+ font-size: 0.95em !important;
644
636
  font-weight: 400 !important;
645
- color: var(--tertiary-set-color);
637
+ color: var(--primary-set-color);
646
638
  }
647
639
 
648
640
  .offRampNewBankFields .inputControl:focus,
649
641
  .offRampNewBankFields .inputControl:active,
650
642
  .offRampNewBankFields .inputControl:focus-within,
651
643
  .offRampNewBankFields .inputControl:focus-visible {
652
- border: 1px soild var(--secondary-set-color);
644
+ border: 1px soild var(--off-white-border);
645
+ background-color: var(--off-white-border);
653
646
  outline: 0;
654
647
  }
655
648
  .offRampNewBankFields .inputControl:focus-visible {
656
- border: 1px soild var(--secondary-set-color);
649
+ border: 1px soild var(--off-white-border);
657
650
  outline: 0;
658
651
  }
659
652
 
@@ -686,7 +679,7 @@ button:disabled {
686
679
 
687
680
  .offRampDetailsInfoBox {
688
681
  padding: 2em;
689
- background-color: var(--secondary-set-color);
682
+ background-color: var(--off-white);
690
683
  border-radius: 10px;
691
684
  }
692
685
 
@@ -886,21 +879,21 @@ button:disabled {
886
879
  }
887
880
 
888
881
  .offCurrencyOption h3 {
889
- font-weight: 500;
890
- color: var(--tertiary-set-color);
891
- font-size: 0.85em;
882
+ font-weight: 600;
883
+ color: var(--primary-set-color);
884
+ font-size: 0.95em;
892
885
  }
893
886
  .offCurrencyOption {
894
887
  display: flex;
895
888
  align-items: center;
896
889
  justify-content: space-between;
897
890
  gap: 8px;
898
- border: 1px solid var(--secondary-set-color);
891
+ border: 1px solid var(--off-white-border);
899
892
  border-radius: 8px;
900
893
  padding: 10px 15px;
901
894
  cursor: pointer;
902
895
  transition: all 0.3s ease;
903
- background-color: var(--secondary-set-color);
896
+ background-color: var(--off-white-border);
904
897
  position: relative;
905
898
  width: 100%;
906
899
  }
@@ -917,7 +910,11 @@ button:disabled {
917
910
  }
918
911
  .offRampFormCheck .offRampFormCheckInput:checked ~ .offCurrencyOption {
919
912
  border-color: var(--primary-set-color);
920
- background-color: #fff7d1;
913
+ background-color: var(--primary-set-color);
914
+ color: var(--off-white);
915
+ }
916
+ .offRampFormCheck .offRampFormCheckInput:checked ~ .offCurrencyOption h3{
917
+ color: var(--off-white);
921
918
  }
922
919
  .offRampFormCheckInput {
923
920
  display: none;
@@ -968,6 +965,7 @@ button:disabled {
968
965
  .errorMsg {
969
966
  color: #e34f4f;
970
967
  margin-top: 0.5em;
968
+ position: absolute;
971
969
  }
972
970
 
973
971
  /* Sell Payment Module UI */
@@ -987,12 +985,12 @@ button:disabled {
987
985
  .back-arrow-btn-sec h4 {
988
986
  font-size: 1.1em;
989
987
  font-weight: 600;
990
- color: var(--tertiary-set-color);
988
+ color: var(--primary-set-color);
991
989
  margin-bottom: 0;
992
990
  }
993
991
  .sellQRPayementWrap {
994
992
  grid-gap: 2em;
995
- background-color: var(--light-set-color);
993
+ background-color: var(--off-white);
996
994
  border-radius: 10px;
997
995
  display: grid;
998
996
  gap: 2em;
@@ -1008,7 +1006,7 @@ button:disabled {
1008
1006
  }
1009
1007
  }
1010
1008
  .sellAmtDetails {
1011
- background-color: var(--light-set-color);
1009
+ background-color: var(--off-white);
1012
1010
  border-radius: 10px;
1013
1011
  display: flex;
1014
1012
  flex-direction: column;
@@ -1016,6 +1014,15 @@ button:disabled {
1016
1014
  margin-bottom: 1em !important;
1017
1015
  grid-area: 1 / 1 / 2 / 3;
1018
1016
  }
1017
+ .sellPaymentQRFrame {
1018
+ display: grid;
1019
+ place-items: center;
1020
+ background-color: var(--off-white-border);
1021
+ border-radius: 12px;
1022
+ padding: 10px;
1023
+ width: fit-content;
1024
+ margin: 0 auto;
1025
+ }
1019
1026
  @media (max-width: 767.98px) {
1020
1027
  .sellAmtDetails {
1021
1028
  grid-area: unset;
@@ -1037,14 +1044,14 @@ button:disabled {
1037
1044
  flex-direction: column;
1038
1045
  }
1039
1046
  .sellPayLabel {
1040
- color: var(--quaternary-set-color);
1041
- font-size: 0.8em;
1042
- font-weight: 300;
1047
+ color: var(--off-white-border);
1048
+ font-size: 0.85em;
1049
+ font-weight: 500;
1043
1050
  margin-bottom: 0.5em;
1044
1051
  }
1045
1052
  .sellPayAmt {
1046
- color: var(--tertiary-set-color);
1047
- font-size: 0.85em;
1053
+ color: var(--primary-set-color);
1054
+ font-size: 0.95em;
1048
1055
  font-weight: 500;
1049
1056
  margin-bottom: 0;
1050
1057
  }
@@ -1057,10 +1064,10 @@ button:disabled {
1057
1064
  background: #0000000a;
1058
1065
  border: 1px dashed #0000003b;
1059
1066
  border-radius: 10px;
1060
- padding: 0.7em;
1067
+ padding: 1em;
1061
1068
  }
1062
1069
  .sellEstimatedInfo p {
1063
- color: var(--tertiary-set-color);
1070
+ color: var(--primary-set-color);
1064
1071
  font-size: 0.85em;
1065
1072
  font-weight: 600;
1066
1073
  margin-bottom: 0;
@@ -1079,7 +1086,7 @@ button:disabled {
1079
1086
  }
1080
1087
  }
1081
1088
  .selllWalletAddressCard {
1082
- background: var(--overlay-set-bg);
1089
+ background: var(--off-white-border);
1083
1090
  padding: 1.5em;
1084
1091
  border-radius: 10px;
1085
1092
  margin-bottom: 1.5em;
@@ -1090,13 +1097,13 @@ button:disabled {
1090
1097
  .sellWalletDataCard h6 {
1091
1098
  font-size: 0.8em;
1092
1099
  font-weight: 500;
1093
- color: var(--tertiary-set-color);
1100
+ color: var(--primary-set-color);
1094
1101
  margin-bottom: 0.5em;
1095
1102
  }
1096
1103
  .sellHashLabel {
1097
1104
  font-size: 0.8em;
1098
1105
  font-weight: 500;
1099
- color: var(--tertiary-set-color);
1106
+ color: var(--primary-set-color);
1100
1107
  margin-bottom: 0.5em;
1101
1108
  }
1102
1109
  .sellHashLabel span {
@@ -1109,38 +1116,39 @@ button:disabled {
1109
1116
  grid-template-columns: auto 65px;
1110
1117
  }
1111
1118
  .sellWalletCode {
1112
- border: 1px solid var(--border-set-color);
1119
+ border: 1px solid var(--off-white);
1120
+ background-color: var(--off-white);
1113
1121
  border-radius: 10px;
1114
- padding: 0.8em 1em;
1122
+ padding: 1em;
1115
1123
  }
1116
1124
  .sellWalletCode span {
1117
1125
  -webkit-line-clamp: 1;
1118
1126
  -webkit-box-orient: vertical;
1119
- color: var(--tertiary-set-color);
1127
+ color: var(--primary-set-color);
1120
1128
  display: -webkit-box;
1121
- font-size: 0.85em;
1122
- font-weight: 500;
1129
+ font-size: 0.95em;
1130
+ font-weight: 600;
1123
1131
  overflow: hidden;
1124
1132
  text-overflow: ellipsis;
1125
1133
  word-break: break-all;
1126
1134
  }
1127
1135
  .sellHashFields {
1128
1136
  border-radius: 10px;
1129
- border: 1px solid var(--border-set-color);
1137
+ border: 1px solid var(--off-white);
1130
1138
  font-size: 0.9em;
1131
1139
  font-weight: 400;
1132
- color: var(--tertiary-set-color);
1133
- background: transparent;
1140
+ color: var(--primary-set-color);
1141
+ background:var(--off-white);
1134
1142
  width: 100%;
1135
- padding: 0.8em 1em;
1143
+ padding: 1em;
1136
1144
  }
1137
1145
  .sellHashFields:focus {
1138
1146
  border-radius: 10px;
1139
- border: 1px solid var(--border-set-color);
1140
- outline: 1px solid var(--border-set-color);
1147
+ border: 1px solid var(--off-white);
1148
+ outline: 1px solid var(--off-white);
1141
1149
  font-size: 0.9em;
1142
1150
  font-weight: 400;
1143
- color: var(--tertiary-set-color);
1151
+ color: var(--primary-set-color);
1144
1152
  background: transparent;
1145
1153
  width: 100%;
1146
1154
  padding: 0.8em 1em;
@@ -1234,7 +1242,7 @@ button:disabled {
1234
1242
  position: absolute;
1235
1243
  width: 90vw;
1236
1244
  height: 2px;
1237
- background-color: #fff;
1245
+ background-color: var(--off-white-border);
1238
1246
  top: 10px;
1239
1247
  left: 18px;
1240
1248
  transform-origin: center;
@@ -1343,15 +1351,15 @@ button:disabled {
1343
1351
  justify-content: center;
1344
1352
  flex-direction: column;
1345
1353
  gap: 1em;
1346
- font-size: 0.65em;
1354
+ font-size: 0.75em;
1347
1355
  font-weight: 600;
1348
1356
  /* background-color: #f3e2c33b; */
1349
- color: var(--quaternary-set-color);
1357
+ color: var(--primary-set-color);
1350
1358
  border-radius: 10px;
1351
1359
  }
1352
1360
 
1353
1361
  .flowStepperCard.completed {
1354
- color: var(--tertiary-set-color);
1362
+ color: var(--primary-set-color);
1355
1363
  }
1356
1364
 
1357
1365
  .flowStepperCard .spinner-loader {
@@ -1361,8 +1369,8 @@ button:disabled {
1361
1369
  }
1362
1370
 
1363
1371
  .flowStepperProcess {
1364
- /* background-color: var(--light-set-color); */
1365
- background-color: #fff;
1372
+ /* background-color: var(--off-white); */
1373
+ background-color: var(--off-white-border);
1366
1374
  width: 2.5em;
1367
1375
  height: 2.5em;
1368
1376
  border-radius: 50%;
@@ -1396,13 +1404,13 @@ button:disabled {
1396
1404
  gap: 1em;
1397
1405
  font-size: 0.75em;
1398
1406
  font-weight: 600;
1399
- color: var(--quaternary-set-color);
1407
+ color: var(--off-white-border);
1400
1408
  padding: 1em;
1401
1409
  border-radius: 10px;
1402
1410
  }
1403
1411
 
1404
1412
  .flow-stepper-success.completed {
1405
- color: var(--tertiary-set-color);
1413
+ color: var(--primary-set-color);
1406
1414
  }
1407
1415
 
1408
1416
  .flow-stepper-bar {
@@ -1416,8 +1424,8 @@ button:disabled {
1416
1424
  width: 100%;
1417
1425
  aspect-ratio: 1;
1418
1426
  border-radius: 50%;
1419
- background: radial-gradient(farthest-side, #ffa516 94%, #0000) top/4.5px 4.5px no-repeat,
1420
- conic-gradient(#0000 30%, #ffa516);
1427
+ background: radial-gradient(farthest-side, var(--primary-set-color) 94%, #0000) top/4.5px 4.5px no-repeat,
1428
+ conic-gradient(#0000 30%, var(--primary-set-color));
1421
1429
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4.5px), #000 0);
1422
1430
  animation: l13 1s infinite linear;
1423
1431
  }
@@ -1454,17 +1462,17 @@ button:disabled {
1454
1462
  }
1455
1463
  .off_info_card {
1456
1464
  border-radius: 10px;
1457
- padding: 0.5em;
1465
+ padding: 1em;
1458
1466
  display: grid;
1459
1467
  grid-template-columns: 40px auto;
1460
1468
  align-items: center;
1461
- background: #ffffff47;
1469
+ background: var(--off-white);
1462
1470
  }
1463
1471
 
1464
1472
  .off_caution_info {
1465
- font-size: 0.8em;
1466
- font-weight: 400;
1467
- color: var(--hightlight-color-des);
1473
+ font-size: 0.85em;
1474
+ font-weight: 500;
1475
+ color: var(--primary-set-color);
1468
1476
  line-height: 1.8;
1469
1477
  }
1470
1478
 
@@ -120,7 +120,7 @@ const ButtonStepper = ({ props, monitoring }: { props: any; monitoring: boolean
120
120
  height="24"
121
121
  enableBackground="new 0 0 512 512"
122
122
  viewBox="0 0 20 20"
123
- fill="#e4e0e0"
123
+ fill="#fff"
124
124
  >
125
125
  <path
126
126
  fillRule="evenodd"
@@ -11,6 +11,7 @@ interface CustomSelectProps {
11
11
  backgroundColor?: string;
12
12
  borderColor?: string;
13
13
  color?: string;
14
+ colorvalue?: string;
14
15
  svgFill?: string;
15
16
  image?: boolean;
16
17
  singleicons?: boolean;
@@ -31,6 +32,7 @@ const CustomSelect: React.FC<CustomSelectProps> = ({
31
32
  backgroundColor = "#fff",
32
33
  borderColor = "var(--no-color)",
33
34
  color = "#000",
35
+ colorvalue ="#000",
34
36
  svgFill = "#333",
35
37
  image,
36
38
  singleicons,
@@ -57,6 +59,7 @@ const CustomSelect: React.FC<CustomSelectProps> = ({
57
59
  padding: 0,
58
60
  minWidth: 250,
59
61
  fontSize: "0.95em",
62
+ fontWeight: "500",
60
63
  "&::-webkit-scrollbar-track": {
61
64
  boxShadow: "inset 0 0 6px rgba(0,0,0,0.3)",
62
65
  borderRadius: "3px",
@@ -80,22 +83,23 @@ const CustomSelect: React.FC<CustomSelectProps> = ({
80
83
  border: `1px solid ${borderColor}!important`,
81
84
  borderRadius: "8px!important",
82
85
  boxShadow: "none!important",
83
- height: "42px",
86
+ height: "45px",
84
87
  display: "flex",
85
88
  alignItems: "center",
86
89
  alignItemsContent: "center",
87
90
  cursor: "pointer",
88
- fontSize: "0.85em",
91
+ fontSize: "1.2em",
92
+ fontWeight: "600",
89
93
  }),
90
94
  placeholder: (provided: any) => ({
91
95
  ...provided,
92
96
  color: color,
93
- fontSize: "1.2em",
97
+ fontSize: "0.9em",
94
98
  fontWeight: "600",
95
99
  }),
96
100
  singleValue: (provided: any) => ({
97
101
  ...provided,
98
- color: "#000",
102
+ color: colorvalue,
99
103
  display: "flex",
100
104
  alignItems: "center",
101
105
  gap: "1em",