@matchain/matchid-sdk-react 0.1.56 → 0.1.57-alpha.1

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.
Files changed (67) hide show
  1. package/dist/api.d.mts +2 -2
  2. package/dist/api.d.ts +2 -2
  3. package/dist/api.js +96 -48
  4. package/dist/api.js.map +1 -1
  5. package/dist/api.mjs +3 -3
  6. package/dist/chains.d.mts +1 -1
  7. package/dist/chains.d.ts +1 -1
  8. package/dist/{chunk-KFB23MLQ.mjs → chunk-6RNCNC65.mjs} +353 -217
  9. package/dist/chunk-6RNCNC65.mjs.map +1 -0
  10. package/dist/{chunk-GD7URBBZ.mjs → chunk-7SUDHG7S.mjs} +41 -1
  11. package/dist/chunk-7SUDHG7S.mjs.map +1 -0
  12. package/dist/{chunk-NYE6DBEZ.mjs → chunk-EAZNOQRK.mjs} +2 -2
  13. package/dist/components.d.mts +3 -3
  14. package/dist/components.d.ts +3 -3
  15. package/dist/components.js +498 -368
  16. package/dist/components.js.map +1 -1
  17. package/dist/components.mjs +2 -2
  18. package/dist/hooks.d.mts +2 -3
  19. package/dist/hooks.d.ts +2 -3
  20. package/dist/hooks.js +228 -182
  21. package/dist/hooks.js.map +1 -1
  22. package/dist/hooks.mjs +2 -2
  23. package/dist/icon.d.mts +2 -2
  24. package/dist/icon.d.ts +2 -2
  25. package/dist/icon.js +40 -0
  26. package/dist/icon.js.map +1 -1
  27. package/dist/icon.mjs +5 -1
  28. package/dist/{index-CBcBTQyU.d.mts → index-84CqVi2I.d.mts} +1 -1
  29. package/dist/index-B70k4Jpk.d.ts +7138 -0
  30. package/dist/index-BJJ0Gb6v.d.mts +7138 -0
  31. package/dist/{index-DlaCsN95.d.ts → index-BNqdFiOo.d.ts} +1 -1
  32. package/dist/{index-xThRnNN3.d.mts → index-BctnHnJp.d.ts} +11 -3
  33. package/dist/{index-CjekOYJl.d.mts → index-BqI0PEIi.d.mts} +1 -1
  34. package/dist/{index-BcuSCgol.d.ts → index-C2hr7zlN.d.ts} +5 -3
  35. package/dist/{index-CD0dACxf.d.mts → index-CTHpnEoB.d.mts} +5 -3
  36. package/dist/{index-CER00guz.d.mts → index-Car1jFyN.d.mts} +1 -1
  37. package/dist/{index-B50DU_xT.d.mts → index-CboftuIp.d.mts} +2 -0
  38. package/dist/{index-B50DU_xT.d.ts → index-CboftuIp.d.ts} +2 -0
  39. package/dist/{index-o0WW1c5O.d.ts → index-CcVHENNv.d.ts} +1 -1
  40. package/dist/{index-DkIIQLbh.d.ts → index-Cqdz_5bE.d.ts} +2 -2
  41. package/dist/{index-DdN22cwf.d.ts → index-CvzpMw3N.d.ts} +1 -1
  42. package/dist/{index-DN-jrh8-.d.ts → index-DkijpM5Q.d.mts} +11 -3
  43. package/dist/{index-lh6qBAf_.d.mts → index-DxHhOW24.d.mts} +2 -2
  44. package/dist/index.css +209 -46
  45. package/dist/index.d.mts +166 -88
  46. package/dist/index.d.ts +166 -88
  47. package/dist/index.js +599 -427
  48. package/dist/index.js.map +1 -1
  49. package/dist/index.mjs +3 -3
  50. package/dist/{types-CheN9vHJ.d.mts → types-BrVeC0c8.d.mts} +1 -1
  51. package/dist/{types-CheN9vHJ.d.ts → types-BrVeC0c8.d.ts} +1 -1
  52. package/dist/types.d.mts +1 -1
  53. package/dist/types.d.ts +1 -1
  54. package/dist/ui.d.mts +3 -3
  55. package/dist/ui.d.ts +3 -3
  56. package/dist/ui.js +127 -110
  57. package/dist/ui.js.map +1 -1
  58. package/dist/ui.mjs +2 -2
  59. package/example/src/App.tsx +65 -60
  60. package/example/src/config/index.ts +8 -6
  61. package/example/src/pages/Wallet/index.tsx +88 -88
  62. package/package.json +2 -2
  63. package/dist/chunk-GD7URBBZ.mjs.map +0 -1
  64. package/dist/chunk-KFB23MLQ.mjs.map +0 -1
  65. package/dist/index-BlMLqmS2.d.mts +0 -3341
  66. package/dist/index-C1Nyy5zx.d.ts +0 -3341
  67. /package/dist/{chunk-NYE6DBEZ.mjs.map → chunk-EAZNOQRK.mjs.map} +0 -0
package/dist/index.css CHANGED
@@ -1,3 +1,7 @@
1
+ * {
2
+ box-sizing: border-box;
3
+ }
4
+
1
5
  body {
2
6
  /**value**/
3
7
  --matchid-light-orange: #FFF3EB;
@@ -153,10 +157,11 @@ body {
153
157
  justify-content: center;
154
158
  align-items: center;
155
159
  flex-direction: column;
156
- gap: 64px;
157
- @media screen and (max-width: 768px) {
160
+ gap: 24px;
161
+
162
+ /* @media screen and (max-width: 768px) {
158
163
  gap: 48px;
159
- }
164
+ } */
160
165
 
161
166
  .matchid-login-recommend-list {
162
167
  width: 100%;
@@ -165,6 +170,7 @@ body {
165
170
  align-items: center;
166
171
  flex-direction: column;
167
172
  gap: 16px;
173
+
168
174
  @media screen and (max-width: 768px) {
169
175
  gap: 12px;
170
176
  }
@@ -193,6 +199,7 @@ body {
193
199
  padding: 16px;
194
200
  cursor: pointer;
195
201
  color: var(--matchid-login-method-color, #000000);
202
+
196
203
  @media screen and (max-width: 768px) {
197
204
  height: 56px;
198
205
  padding: 10px 16px;
@@ -205,6 +212,7 @@ body {
205
212
  gap: 8px;
206
213
  font-size: 16px;
207
214
  font-weight: 600;
215
+
208
216
  @media screen and (max-width: 768px) {
209
217
  gap: 12px
210
218
  }
@@ -241,6 +249,7 @@ body {
241
249
  flex-direction: column;
242
250
  gap: 8px;
243
251
  width: 100%;
252
+
244
253
  @media screen and (max-width: 768px) {
245
254
  margin-top: 10px;
246
255
  }
@@ -254,6 +263,7 @@ body {
254
263
  border-radius: 8px;
255
264
  font-size: 16px;
256
265
  font-weight: 600;
266
+
257
267
  @media screen and (max-width: 768px) {
258
268
  height: 48px;
259
269
  }
@@ -294,22 +304,70 @@ body {
294
304
  }
295
305
  }
296
306
 
307
+ .matchid-privacy-policy {
308
+ display: flex;
309
+ flex-direction: column;
310
+ align-items: center;
311
+ gap: 16px;
312
+
313
+ .matchid-privacy-policy-content {
314
+ width: 100%;
315
+ text-align: center;
316
+ font-size: 14px;
317
+ color: var(--matchid-gray-600);
318
+ font-weight: 400;
319
+ padding: 0 24px;
320
+ line-height: 17px;
321
+
322
+ .matchid-privacy-policy-content-link {
323
+ color: var(--matchid-highlight-orange);
324
+ text-decoration: underline;
325
+ cursor: pointer;
326
+ }
327
+ }
328
+
329
+ .matchid-privacy-policy-powered-by {
330
+ display: flex;
331
+ align-items: center;
332
+ gap: 8px;
333
+ font-size: 16px;
334
+ font-weight: 500;
335
+ color: var(--matchid-gray-350);
336
+ }
337
+ }
338
+
297
339
  .matchid-login-other {
298
340
  width: 100%;
299
341
  gap: 16px;
300
342
  display: flex;
301
343
  flex-direction: column;
344
+ margin-top: 12px;
345
+
346
+ .matchid-login-other-line-box {
347
+ display: flex;
348
+ align-items: center;
349
+ gap: 8px;
350
+ }
302
351
 
303
352
  .matchid-login-other-text {
353
+ position: relative;
304
354
  text-align: center;
305
355
  font-size: 14px;
306
356
  color: var(--matchid-login-other-color, #6E6E6E);
307
357
  font-weight: 400;
358
+
308
359
  @media screen and (max-width: 768px) {
309
360
  font-size: 12px;
310
361
  }
311
362
  }
312
363
 
364
+ .matchid-login-other-line {
365
+ flex-grow: 1;
366
+ height: 1px;
367
+ background-color: var(--matchid-line);
368
+ opacity: 0.5;
369
+ }
370
+
313
371
  .matchid-login-method-box {
314
372
  display: grid;
315
373
  padding: 16px;
@@ -331,12 +389,13 @@ body {
331
389
  display: flex;
332
390
  flex-direction: column;
333
391
  gap: 24px;
392
+
334
393
  @media screen and (max-width: 768px) {
335
394
  gap: 16px;
336
395
  }
337
396
 
338
397
  .matchid-login-panel-box {
339
- max-height: 500px;
398
+ max-height: 683px;
340
399
  overflow-y: auto;
341
400
 
342
401
  &::-webkit-scrollbar {
@@ -362,12 +421,15 @@ body {
362
421
  display: flex;
363
422
  gap: 4px;
364
423
  flex-direction: column;
424
+ align-items: flex-start;
365
425
  }
366
426
 
367
427
  .matchid-login-panel-header-title {
368
428
  color: var(--matchid-login-panel-title-color, #000000);
369
429
  font-size: 18px;
370
430
  font-weight: 600;
431
+ text-align: left;
432
+
371
433
  @media screen and (max-width: 768px) {
372
434
  font-size: 16px;
373
435
  }
@@ -378,6 +440,7 @@ body {
378
440
  font-size: 14px;
379
441
  font-weight: 400;
380
442
  line-height: 120%;
443
+
381
444
  @media screen and (max-width: 768px) {
382
445
  font-size: 12px;
383
446
  }
@@ -404,6 +467,7 @@ body {
404
467
  backdrop-filter: blur(2px);
405
468
  background: rgba(0, 0, 0, .3);
406
469
  color: var(--matchid-overlay-color);
470
+
407
471
  @media screen and (max-width: 768px) {
408
472
  align-items: center;
409
473
  }
@@ -417,11 +481,13 @@ body {
417
481
  width: 480px;
418
482
  max-width: 90vw;
419
483
  padding: var(--matchid-modal-padding, 32px);
484
+
420
485
  @media screen and (max-width: 768px) {
421
486
  width: calc(100vw - 20px);
422
487
  max-width: calc(100vw - 20px);
423
488
  padding: var(--matchid-mobile-modal-padding, 20px);
424
489
  padding-top: 0px;
490
+
425
491
  .matchid-modal-mobile-header {
426
492
  width: 44px;
427
493
  height: 5px;
@@ -437,6 +503,7 @@ body {
437
503
  display: flex;
438
504
  align-items: center;
439
505
  justify-content: space-between;
506
+
440
507
  @media screen and (max-width: 768px) {
441
508
  height: 38px;
442
509
  padding-bottom: 16px;
@@ -448,7 +515,8 @@ body {
448
515
  margin-bottom: 24px;
449
516
  }
450
517
 
451
- .matchid-modal-header-back, .matchid-modal-header-close {
518
+ .matchid-modal-header-back,
519
+ .matchid-modal-header-close {
452
520
  cursor: pointer;
453
521
  }
454
522
 
@@ -461,6 +529,7 @@ body {
461
529
  color: var(--matchid-modal-header-color, #000);
462
530
  font-size: 20px;
463
531
  font-weight: 500;
532
+
464
533
  @media screen and (max-width: 768px) {
465
534
  font-size: 16px;
466
535
  font-weight: 500;
@@ -486,13 +555,16 @@ body {
486
555
  justify-content: space-between;
487
556
  background: var(--matchid-input-bg);
488
557
  gap: 24px;
558
+
489
559
  @media screen and (max-width: 768px) {
490
560
  height: 48px;
491
561
  padding-left: 16px;
492
562
  padding-right: 16px;
493
563
  }
494
564
 
495
- &:active, &:focus, &:focus-within {
565
+ &:active,
566
+ &:focus,
567
+ &:focus-within {
496
568
  border-color: var(--matchid-input-focus-border-color);
497
569
  background: var(--matchid-input-focus-bg);
498
570
  }
@@ -502,7 +574,7 @@ body {
502
574
  }
503
575
 
504
576
 
505
- .matchid-input-field{
577
+ .matchid-input-field {
506
578
  flex: 1;
507
579
  height: 100%;
508
580
  outline: 0;
@@ -511,7 +583,8 @@ body {
511
583
  font-weight: 500;
512
584
  background: none;
513
585
  min-width: 0;
514
- border:0;
586
+ border: 0;
587
+
515
588
  @media screen and (max-width: 768px) {
516
589
  font-size: 16px;
517
590
  font-weight: 500;
@@ -522,7 +595,8 @@ body {
522
595
  font-weight: 300;
523
596
  }
524
597
 
525
- &:active, &:focus {
598
+ &:active,
599
+ &:focus {
526
600
  outline: 0;
527
601
  }
528
602
  }
@@ -533,6 +607,7 @@ body {
533
607
  align-items: center;
534
608
  width: 20px;
535
609
  flex-shrink: 1;
610
+
536
611
  @media screen and (max-width: 768px) {
537
612
  width: 16px;
538
613
  }
@@ -543,6 +618,7 @@ body {
543
618
  cursor: pointer;
544
619
  width: 20px;
545
620
  flex-shrink: 1;
621
+
546
622
  @media screen and (max-width: 768px) {
547
623
  width: 16px;
548
624
  }
@@ -553,33 +629,39 @@ body {
553
629
  opacity: 1;
554
630
  }
555
631
  }
556
- .matchid-input-length{
557
- color:var(--matchid-gray-400);
632
+
633
+ .matchid-input-length {
634
+ color: var(--matchid-gray-400);
558
635
  --icon-color: var(--matchid-gray-400);
559
636
  position: absolute;
560
- bottom:8px;
561
- right:8px;
637
+ bottom: 8px;
638
+ right: 8px;
562
639
  display: flex;
563
640
  align-items: flex-end;
564
- gap:4px;
565
- font-size:18px;
641
+ gap: 4px;
642
+ font-size: 18px;
643
+
566
644
  @media screen and (max-width: 768px) {
567
- font-size:14px;
645
+ font-size: 14px;
568
646
  }
569
647
  }
570
- &:active, &:focus, &:focus-within {
571
- .matchid-input-length{
572
- color:var(--matchid-highlight-orange);
648
+
649
+ &:active,
650
+ &:focus,
651
+ &:focus-within {
652
+ .matchid-input-length {
653
+ color: var(--matchid-highlight-orange);
573
654
  --icon-color: var(--matchid-highlight-orange);
574
655
  }
575
656
  }
576
657
 
577
- &.matchid-input-textarea{
578
- height:auto;
579
- padding:24px;
580
- .matchid-input-field{
658
+ &.matchid-input-textarea {
659
+ height: auto;
660
+ padding: 24px;
661
+
662
+ .matchid-input-field {
581
663
  line-height: 24px;
582
- height:24px;
664
+ height: 24px;
583
665
  max-height: calc(24px * var(--max-rows));
584
666
  resize: none;
585
667
  overflow: auto;
@@ -591,6 +673,7 @@ body {
591
673
  display: flex;
592
674
  flex-direction: column;
593
675
  gap: 16px;
676
+
594
677
  @media screen and (max-width: 768px) {
595
678
  gap: 8px;
596
679
  }
@@ -599,6 +682,7 @@ body {
599
682
  color: var(--matchid-field-color);
600
683
  font-size: 18px;
601
684
  font-weight: 500;
685
+
602
686
  @media screen and (max-width: 768px) {
603
687
  font-size: 14px;
604
688
  font-weight: 500;
@@ -645,7 +729,10 @@ body {
645
729
  }
646
730
 
647
731
 
648
- .matchid-btn-highlight, .matchid-btn-highlight:hover, .matchid-btn-highlight:focus, .matchid-btn-highlight:not(:disabled):hover {
732
+ .matchid-btn-highlight,
733
+ .matchid-btn-highlight:hover,
734
+ .matchid-btn-highlight:focus,
735
+ .matchid-btn-highlight:not(:disabled):hover {
649
736
  background: var(--matchid-btn-highlight-bg);
650
737
  color: var(--matchid-btn-highlight-color);
651
738
  border: 0;
@@ -673,6 +760,7 @@ body {
673
760
  0% {
674
761
  transform: rotate(0deg);
675
762
  }
763
+
676
764
  100% {
677
765
  transform: rotate(360deg);
678
766
  }
@@ -725,25 +813,30 @@ body {
725
813
  }
726
814
  }
727
815
 
728
- .matchid-email-verify-box, .matchid-password-box {
816
+ .matchid-email-verify-box,
817
+ .matchid-password-box {
729
818
  display: flex;
730
819
  flex-direction: column;
731
820
  gap: 64px;
821
+
732
822
  @media screen and (max-width: 768px) {
733
823
  gap: 36px;
734
824
  }
735
825
 
736
- .matchid-email-verify-header, .matchid-password-header {
826
+ .matchid-email-verify-header,
827
+ .matchid-password-header {
737
828
  display: flex;
738
829
  align-items: center;
739
830
  gap: 16px;
740
831
  height: 40px;
832
+
741
833
  @media screen and (max-width: 768px) {
742
834
  gap: 12px;
743
835
  height: 32px;
744
836
  }
745
837
 
746
- .matchid-email-verify-header-icon, .matchid-password-header-icon {
838
+ .matchid-email-verify-header-icon,
839
+ .matchid-password-header-icon {
747
840
  width: 40px;
748
841
  height: 40px;
749
842
  display: flex;
@@ -751,6 +844,7 @@ body {
751
844
  align-items: center;
752
845
  border-radius: 8px;
753
846
  border: 1px solid var(--matchid-black);
847
+
754
848
  @media screen and (max-width: 768px) {
755
849
  width: 32px;
756
850
  height: 32px;
@@ -770,6 +864,7 @@ body {
770
864
  font-size: 24px;
771
865
  font-weight: 600;
772
866
  line-height: 100%;
867
+
773
868
  @media screen and (max-width: 768px) {
774
869
  font-size: 16px;
775
870
  font-weight: 500;
@@ -779,7 +874,9 @@ body {
779
874
  .matchid-email-verify-header-tips {
780
875
  color: var(--matchid-email-verify-header-value-tips);
781
876
  font-size: 14px;
782
- line-height: 120%; /* 16.8px */
877
+ line-height: 120%;
878
+
879
+ /* 16.8px */
783
880
  @media screen and (max-width: 768px) {
784
881
  font-size: 12px;
785
882
  }
@@ -787,9 +884,10 @@ body {
787
884
  }
788
885
 
789
886
  .matchid-password-header-content {
790
- flex:1;
887
+ flex: 1;
791
888
  font-size: 14px;
792
889
  color: var(--matchid-password-header-color);
890
+
793
891
  @media screen and (max-width: 768px) {
794
892
  font-size: 14px;
795
893
  }
@@ -798,7 +896,8 @@ body {
798
896
  }
799
897
 
800
898
 
801
- .matchid-unlogin-btn, .matchid-login-btn {
899
+ .matchid-unlogin-btn,
900
+ .matchid-login-btn {
802
901
  gap: 8px
803
902
  }
804
903
 
@@ -810,7 +909,8 @@ body {
810
909
  border-color: var(--matchid-login-btn-border-color);
811
910
  }
812
911
 
813
- .matchid-login-btn:hover, .matchid-login-btn:not(:disabled):hover {
912
+ .matchid-login-btn:hover,
913
+ .matchid-login-btn:not(:disabled):hover {
814
914
  background: var(--matchid-login-btn-hover-bg-color);
815
915
  color: var(--matchid-login-btn-hover-text-color);
816
916
  fill: var(--matchid-login-btn-hover-icon-color);
@@ -835,6 +935,7 @@ body {
835
935
  display: flex;
836
936
  flex-direction: column;
837
937
  gap: 16px;
938
+
838
939
  @media screen and (max-width: 768px) {
839
940
  gap: 4px;
840
941
  }
@@ -844,6 +945,7 @@ body {
844
945
  font-size: 14px;
845
946
  gap: 8px;
846
947
  align-items: flex-start;
948
+
847
949
  @media screen and (max-width: 768px) {
848
950
  font-size: 12px;
849
951
  line-height: normal;
@@ -1068,6 +1170,7 @@ body {
1068
1170
  font-size: 16px;
1069
1171
  font-weight: 500;
1070
1172
  display: block;
1173
+
1071
1174
  @media screen and (min-width: 768px) {
1072
1175
  display: none;
1073
1176
  }
@@ -1078,6 +1181,7 @@ body {
1078
1181
  flex-direction: column;
1079
1182
  gap: 36px;
1080
1183
  align-items: center;
1184
+
1081
1185
  @media screen and (min-width: 768px) {
1082
1186
  justify-content: space-between;
1083
1187
  flex: 1;
@@ -1090,6 +1194,7 @@ body {
1090
1194
  gap: 24px;
1091
1195
  align-items: center;
1092
1196
  width: 100%;
1197
+
1093
1198
  @media screen and (min-width: 768px) {
1094
1199
  gap: 48px;
1095
1200
  }
@@ -1098,6 +1203,7 @@ body {
1098
1203
  font-size: 24px;
1099
1204
  font-weight: 500;
1100
1205
  display: none;
1206
+
1101
1207
  @media screen and (min-width: 768px) {
1102
1208
  display: block;
1103
1209
  }
@@ -1108,10 +1214,12 @@ body {
1108
1214
  height: 96px;
1109
1215
  }
1110
1216
 
1111
- .matchid-hashpanel-hash,.matchid-hashpanel-text {
1217
+ .matchid-hashpanel-hash,
1218
+ .matchid-hashpanel-text {
1112
1219
  width: 100%;
1113
1220
  font-size: 14px;
1114
1221
  word-break: break-all;
1222
+
1115
1223
  @media screen and (min-width: 768px) {
1116
1224
  font-size: 16px;
1117
1225
  }
@@ -1133,7 +1241,8 @@ body {
1133
1241
  position: relative;
1134
1242
  transition: background-color 0.3s ease;
1135
1243
 
1136
- .matchid-switch-ball, .matchid-switch-loading-icon {
1244
+ .matchid-switch-ball,
1245
+ .matchid-switch-loading-icon {
1137
1246
  width: 24px;
1138
1247
  height: 24px;
1139
1248
  transition: transform 0.3s ease, left 0.3s, background-color 0.3s ease;
@@ -1152,7 +1261,8 @@ body {
1152
1261
  height: 24px;
1153
1262
  border-radius: 12px;
1154
1263
 
1155
- .matchid-switch-ball, .matchid-switch-loading-icon {
1264
+ .matchid-switch-ball,
1265
+ .matchid-switch-loading-icon {
1156
1266
  width: 18px;
1157
1267
  height: 18px;
1158
1268
  left: 3px;
@@ -1163,16 +1273,19 @@ body {
1163
1273
  &.matchid-switch-checked {
1164
1274
  background-color: var(--matchid-switch-checked-bg);
1165
1275
 
1166
- .matchid-switch-ball, .matchid-switch-loading-icon {
1276
+ .matchid-switch-ball,
1277
+ .matchid-switch-loading-icon {
1167
1278
  left: 36px;
1168
1279
  }
1169
1280
 
1170
- &.matchid-switch-sm .matchid-switch-ball, .matchid-switch-sm .matchid-switch-loading-icon {
1281
+ &.matchid-switch-sm .matchid-switch-ball,
1282
+ .matchid-switch-sm .matchid-switch-loading-icon {
1171
1283
  left: 27px;
1172
1284
  }
1173
1285
  }
1174
1286
 
1175
- &.matchid-switch-disabled, &.matchid-switch-loading {
1287
+ &.matchid-switch-disabled,
1288
+ &.matchid-switch-loading {
1176
1289
  cursor: not-allowed;
1177
1290
  background-color: var(--matchid-switch-disabled-bg);
1178
1291
 
@@ -1220,6 +1333,7 @@ body {
1220
1333
  display: flex;
1221
1334
  flex-direction: column;
1222
1335
  gap: 48px;
1336
+
1223
1337
  @media screen and (max-width: 768px) {
1224
1338
  gap: 36px;
1225
1339
  }
@@ -1228,6 +1342,7 @@ body {
1228
1342
  display: flex;
1229
1343
  flex-direction: column;
1230
1344
  gap: 24px;
1345
+
1231
1346
  @media screen and (max-width: 768px) {
1232
1347
  gap: 16px;
1233
1348
  }
@@ -1242,12 +1357,14 @@ body {
1242
1357
  border: 1px solid var(--matchid-line);
1243
1358
  border-radius: 16px;
1244
1359
  transition: border-color 0.2s;
1360
+
1245
1361
  @media screen and (max-width: 768px) {
1246
1362
  padding: 10px 16px;
1247
1363
  border-radius: 12px;
1248
1364
  }
1249
1365
 
1250
- &:hover, &.matchid-change-network-selected {
1366
+ &:hover,
1367
+ &.matchid-change-network-selected {
1251
1368
  border-color: var(--matchid-highlight-orange);
1252
1369
  }
1253
1370
 
@@ -1255,6 +1372,7 @@ body {
1255
1372
  display: flex;
1256
1373
  align-items: center;
1257
1374
  gap: 16px;
1375
+
1258
1376
  @media screen and (max-width: 768px) {
1259
1377
  gap: 8px;
1260
1378
  }
@@ -1263,6 +1381,7 @@ body {
1263
1381
  width: 28px;
1264
1382
  height: 28px;
1265
1383
  border-radius: 8px;
1384
+
1266
1385
  @media (min-width: 768px) {
1267
1386
  width: 40px;
1268
1387
  height: 40px;
@@ -1272,6 +1391,7 @@ body {
1272
1391
  .matchid-change-network-item-name {
1273
1392
  font-size: 14px;
1274
1393
  font-weight: 500;
1394
+
1275
1395
  @media (min-width: 768px) {
1276
1396
  font-size: 16px;
1277
1397
  }
@@ -1284,11 +1404,14 @@ body {
1284
1404
 
1285
1405
  .matchid-toast-box {
1286
1406
  position: fixed;
1287
- top: 20px; /* 5 * 4px = 20px */
1288
- right: 20px; /* 5 * 4px = 20px */
1407
+ top: 20px;
1408
+ /* 5 * 4px = 20px */
1409
+ right: 20px;
1410
+ /* 5 * 4px = 20px */
1289
1411
  display: flex;
1290
1412
  flex-direction: column;
1291
- gap: 8px; /* space-y-2 -> 2 * 4px = 8px */
1413
+ gap: 8px;
1414
+ /* space-y-2 -> 2 * 4px = 8px */
1292
1415
 
1293
1416
  .matchid-toast {
1294
1417
  display: flex;
@@ -1313,6 +1436,7 @@ body {
1313
1436
  align-items: center;
1314
1437
  flex: 1;
1315
1438
  gap: 48px;
1439
+
1316
1440
  @media screen and (max-width: 768px) {
1317
1441
  gap: 36px;
1318
1442
  }
@@ -1322,6 +1446,7 @@ body {
1322
1446
  flex-direction: column;
1323
1447
  align-items: center;
1324
1448
  gap: 48px;
1449
+
1325
1450
  @media screen and (max-width: 768px) {
1326
1451
  gap: 24px;
1327
1452
  }
@@ -1339,6 +1464,7 @@ body {
1339
1464
  border: 2px solid var(--matchid-line);
1340
1465
  border-radius: 12px;
1341
1466
  padding: 16px;
1467
+
1342
1468
  @media screen and (max-width: 768px) {
1343
1469
  padding: 10px;
1344
1470
  }
@@ -1346,6 +1472,7 @@ body {
1346
1472
  .matchid-qr-code {
1347
1473
  width: 148px;
1348
1474
  height: 148px;
1475
+
1349
1476
  @media screen and (max-width: 768px) {
1350
1477
  width: 88px;
1351
1478
  height: 88px;
@@ -1367,6 +1494,7 @@ body {
1367
1494
  display: flex;
1368
1495
  flex-direction: column;
1369
1496
  gap: 48px;
1497
+
1370
1498
  @media screen and (max-width: 768px) {
1371
1499
  gap: 36px;
1372
1500
  }
@@ -1375,6 +1503,7 @@ body {
1375
1503
  display: flex;
1376
1504
  flex-direction: column;
1377
1505
  gap: 24px;
1506
+
1378
1507
  @media screen and (max-width: 768px) {
1379
1508
  gap: 16px;
1380
1509
  }
@@ -1385,6 +1514,7 @@ body {
1385
1514
  display: flex;
1386
1515
  flex-direction: column;
1387
1516
  gap: 16px;
1517
+
1388
1518
  @media screen and (max-width: 768px) {
1389
1519
  gap: 8px;
1390
1520
  }
@@ -1400,6 +1530,7 @@ body {
1400
1530
  padding: 16px;
1401
1531
  border: 1px solid var(--matchid-line);
1402
1532
  border-radius: 16px;
1533
+
1403
1534
  @media screen and (max-width: 768px) {
1404
1535
  padding: 10px 16px;
1405
1536
  }
@@ -1414,6 +1545,7 @@ body {
1414
1545
  width: 42px;
1415
1546
  display: flex;
1416
1547
  align-items: center;
1548
+
1417
1549
  @media screen and (max-width: 768px) {
1418
1550
  width: 36px;
1419
1551
  height: 36px;
@@ -1423,6 +1555,7 @@ body {
1423
1555
  width: 40px;
1424
1556
  height: 40px;
1425
1557
  border-radius: 8px;
1558
+
1426
1559
  @media screen and (max-width: 768px) {
1427
1560
  width: 36px;
1428
1561
  height: 36px;
@@ -1436,6 +1569,7 @@ body {
1436
1569
  height: 12px;
1437
1570
  right: 0px;
1438
1571
  bottom: 1px;
1572
+
1439
1573
  @media screen and (max-width: 768px) {
1440
1574
  width: 10px;
1441
1575
  height: 10px;
@@ -1465,6 +1599,7 @@ body {
1465
1599
  -webkit-box-orient: vertical;
1466
1600
  overflow: hidden;
1467
1601
  text-overflow: ellipsis;
1602
+
1468
1603
  @media (max-width: 768px) {
1469
1604
  font-size: 14px;
1470
1605
  }
@@ -1480,6 +1615,7 @@ body {
1480
1615
  font-size: 16px;
1481
1616
  font-weight: 500;
1482
1617
  color: var(--matchid-black);
1618
+
1483
1619
  @media (max-width: 768px) {
1484
1620
  font-size: 14px;
1485
1621
  }
@@ -1504,6 +1640,7 @@ body {
1504
1640
  font-size: 16px;
1505
1641
  font-weight: 500;
1506
1642
  color: var(--matchid-success);
1643
+
1507
1644
  @media (max-width: 768px) {
1508
1645
  font-size: 14px;
1509
1646
  }
@@ -1576,6 +1713,7 @@ body {
1576
1713
  font-size: 20px;
1577
1714
  font-weight: 500;
1578
1715
  color: var(--matchid-black);
1716
+
1579
1717
  @media (max-width: 768px) {
1580
1718
  font-size: 16px;
1581
1719
  }
@@ -1589,6 +1727,7 @@ body {
1589
1727
  padding: 16px;
1590
1728
  background: var(--matchid-gray-100);
1591
1729
  border-radius: 12px;
1730
+
1592
1731
  @media (max-width: 768px) {
1593
1732
  gap: 8px;
1594
1733
  }
@@ -1597,6 +1736,7 @@ body {
1597
1736
  color: var(--matchid-black);
1598
1737
  font-size: 16px;
1599
1738
  font-weight: 500;
1739
+
1600
1740
  @media (max-width: 768px) {
1601
1741
  font-size: 14px;
1602
1742
  }
@@ -1607,6 +1747,7 @@ body {
1607
1747
  word-break: break-all;
1608
1748
  font-size: 14px;
1609
1749
  color: var(--matchid-secondary-grey);
1750
+
1610
1751
  @media (max-width: 768px) {
1611
1752
  font-size: 12px;
1612
1753
  }
@@ -1622,6 +1763,7 @@ body {
1622
1763
  flex-direction: column;
1623
1764
  padding-bottom: 200px;
1624
1765
  gap: 40px;
1766
+
1625
1767
  @media (max-width: 768px) {
1626
1768
  padding-bottom: 0px;
1627
1769
  gap: 68px;
@@ -1632,7 +1774,8 @@ body {
1632
1774
  flex-direction: column;
1633
1775
  gap: 16px;
1634
1776
 
1635
- .matchid-token-amount-content, .matchid-token-address-content {
1777
+ .matchid-token-amount-content,
1778
+ .matchid-token-address-content {
1636
1779
  padding: 16px;
1637
1780
  background: var(--matchid-light-grey);
1638
1781
  border-radius: 16px;
@@ -1659,6 +1802,7 @@ body {
1659
1802
  font-size: 16px;
1660
1803
  font-weight: 500;
1661
1804
  color: var(--matchid-black);
1805
+
1662
1806
  @media (max-width: 768px) {
1663
1807
  font-size: 14px;
1664
1808
  }
@@ -1692,6 +1836,7 @@ body {
1692
1836
  align-items: center;
1693
1837
  gap: 8px;
1694
1838
  font-size: 14px;
1839
+
1695
1840
  @media (max-width: 768px) {
1696
1841
  font-size: 12px;
1697
1842
  }
@@ -1714,6 +1859,7 @@ body {
1714
1859
  font-size: 16px;
1715
1860
  font-weight: 500;
1716
1861
  color: var(--matchid-black);
1862
+
1717
1863
  @media (max-width: 768px) {
1718
1864
  font-size: 14px;
1719
1865
  }
@@ -1738,6 +1884,7 @@ body {
1738
1884
  font-weight: 600;
1739
1885
  border-bottom: 1px solid var(--matchid-line);
1740
1886
  caret-color: var(--matchid-black);
1887
+
1741
1888
  @media (max-width: 768px) {
1742
1889
  font-size: 20px;
1743
1890
  }
@@ -1759,6 +1906,7 @@ body {
1759
1906
  &.matchid-token-input-sm {
1760
1907
  .matchid-token-input {
1761
1908
  font-size: 16px;
1909
+
1762
1910
  @media (max-width: 768px) {
1763
1911
  font-size: 14px;
1764
1912
  }
@@ -1794,6 +1942,7 @@ body {
1794
1942
  flex: 1;
1795
1943
  overflow-y: scroll;
1796
1944
  max-height: calc(70vh - 48px - 50px);
1945
+
1797
1946
  @media (max-width: 768px) {
1798
1947
  max-height: calc(70vh - 48px - 38px);
1799
1948
  }
@@ -1808,12 +1957,14 @@ body {
1808
1957
  border: 1px solid var(--matchid-line);
1809
1958
  border-radius: 16px;
1810
1959
  transition: border-color 0.2s;
1960
+
1811
1961
  @media (max-width: 768px) {
1812
1962
  padding: 10px 16px;
1813
1963
  border-radius: 12px;
1814
1964
  }
1815
1965
 
1816
- &:hover, &.matchid-token-send-checked {
1966
+ &:hover,
1967
+ &.matchid-token-send-checked {
1817
1968
  border-color: var(--matchid-highlight-orange);
1818
1969
  }
1819
1970
 
@@ -1822,6 +1973,7 @@ body {
1822
1973
  align-items: center;
1823
1974
  flex: 1;
1824
1975
  gap: 16px;
1976
+
1825
1977
  @media (max-width: 768px) {
1826
1978
  gap: 8px;
1827
1979
  }
@@ -1860,6 +2012,7 @@ body {
1860
2012
  align-items: center;
1861
2013
  justify-content: space-between;
1862
2014
  gap: 10px;
2015
+
1863
2016
  @media (min-width: 768px) {
1864
2017
  font-size: 16px;
1865
2018
  }
@@ -1883,6 +2036,7 @@ body {
1883
2036
  height: 78px;
1884
2037
  background: var(--matchid-wallet-transaction-bg);
1885
2038
  color: var(--matchid-wallet-transaction-color);
2039
+
1886
2040
  @media screen and (max-width: 768px) {
1887
2041
  height: 64px;
1888
2042
  }
@@ -1904,6 +2058,7 @@ body {
1904
2058
  display: flex;
1905
2059
  align-items: center;
1906
2060
  justify-content: center;
2061
+
1907
2062
  @media screen and (max-width: 768px) {
1908
2063
  width: 36px;
1909
2064
  height: 36px;
@@ -1923,6 +2078,7 @@ body {
1923
2078
  font-size: 16px;
1924
2079
  font-weight: 500;
1925
2080
  color: black;
2081
+
1926
2082
  @media screen and (max-width: 768px) {
1927
2083
  font-size: 14px;
1928
2084
  }
@@ -1976,6 +2132,7 @@ body {
1976
2132
  display: flex;
1977
2133
  flex-direction: column;
1978
2134
  gap: 16px;
2135
+
1979
2136
  @media screen and (max-width: 768px) {
1980
2137
  gap: 8px;
1981
2138
  }
@@ -1990,6 +2147,7 @@ body {
1990
2147
  align-items: center;
1991
2148
  justify-content: center;
1992
2149
  color: var(--matchid-secondary-grey);
2150
+
1993
2151
  @media screen and (max-width: 768px) {
1994
2152
  font-size: 14px;
1995
2153
  }
@@ -2006,6 +2164,7 @@ body {
2006
2164
  padding-bottom: 100px;
2007
2165
  gap: 24px;
2008
2166
  justify-content: space-between;
2167
+
2009
2168
  @media screen and (max-width: 768px) {
2010
2169
  padding-bottom: 0;
2011
2170
  gap: 115px;
@@ -2016,6 +2175,7 @@ body {
2016
2175
  flex-direction: column;
2017
2176
  gap: 48px;
2018
2177
  align-items: center;
2178
+
2019
2179
  @media screen and (max-width: 768px) {
2020
2180
  gap: 24px;
2021
2181
  }
@@ -2029,6 +2189,7 @@ body {
2029
2189
  font-size: 24px;
2030
2190
  font-weight: 500;
2031
2191
  color: var(--matchid-success);
2192
+
2032
2193
  @media screen and (max-width: 768px) {
2033
2194
  font-size: 18px;
2034
2195
  }
@@ -2055,6 +2216,7 @@ body {
2055
2216
  0% {
2056
2217
  background-position: 200% 0;
2057
2218
  }
2219
+
2058
2220
  100% {
2059
2221
  background-position: -200% 0;
2060
2222
  }
@@ -2068,6 +2230,7 @@ body {
2068
2230
  font-size: 16px;
2069
2231
  color: var(--matchid-secondary-grey);
2070
2232
  padding: 20px 0;
2233
+
2071
2234
  @media screen and (max-width: 768px) {
2072
2235
  font-size: 14px;
2073
2236
  }
@@ -2122,10 +2285,10 @@ body {
2122
2285
  width: 100%;
2123
2286
  align-items: center;
2124
2287
  justify-content: center;
2288
+
2125
2289
  @media (min-width: 768px) {
2126
2290
  font-size: 16px;
2127
2291
  gap: 12px;
2128
2292
  }
2129
2293
 
2130
- }
2131
-
2294
+ }