@kimafinance/kima-transaction-widget 1.4.8 → 1.4.10
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.cjs +813 -386
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +219 -267
- package/dist/index.css.map +1 -1
- package/dist/index.js +760 -333
- package/dist/index.js.map +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/package.json +4 -3
- package/dist/assets/Manrope-ExtraLight-47OLGDTA.woff +0 -0
- package/dist/assets/Manrope-ExtraLight-6BGXUBPE.woff2 +0 -0
- package/dist/assets/Manrope-ExtraLight-6KZAMPI7.eot +0 -0
- package/dist/assets/SohneBreit-Buch-FPHQDKKW.woff +0 -0
- package/dist/assets/SohneBreit-Buch-UDQP3HAK.woff2 +0 -0
- package/dist/assets/SohneBreit-Buch-VTQ4XGFE.eot +0 -0
package/dist/index.css
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
|
|
2
|
-
@import
|
|
3
|
-
|
|
4
|
-
/* src/index.css */
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
2
|
+
@import 'react-tooltip/dist/react-tooltip.css';
|
|
5
3
|
@keyframes pulse {
|
|
6
4
|
0% {
|
|
7
5
|
opacity: 1;
|
|
@@ -15,22 +13,16 @@
|
|
|
15
13
|
}
|
|
16
14
|
@font-face {
|
|
17
15
|
font-family: "Manrope";
|
|
18
|
-
src: url("./
|
|
19
|
-
src:
|
|
20
|
-
url("./assets/Manrope-ExtraLight-6KZAMPI7.eot?#iefix") format("embedded-opentype"),
|
|
21
|
-
url("./assets/Manrope-ExtraLight-6BGXUBPE.woff2") format("woff2"),
|
|
22
|
-
url("./assets/Manrope-ExtraLight-47OLGDTA.woff") format("woff");
|
|
16
|
+
src: url("./fonts/Manrope-ExtraLight.eot");
|
|
17
|
+
src: url("./fonts/Manrope-ExtraLight.eot?#iefix") format("embedded-opentype"), url("./fonts/Manrope-ExtraLight.woff2") format("woff2"), url("./fonts/Manrope-ExtraLight.woff") format("woff");
|
|
23
18
|
font-weight: 200;
|
|
24
19
|
font-style: normal;
|
|
25
20
|
font-display: swap;
|
|
26
21
|
}
|
|
27
22
|
@font-face {
|
|
28
23
|
font-family: "Sohne";
|
|
29
|
-
src: url("./
|
|
30
|
-
src:
|
|
31
|
-
url("./assets/SohneBreit-Buch-VTQ4XGFE.eot?#iefix") format("embedded-opentype"),
|
|
32
|
-
url("./assets/SohneBreit-Buch-UDQP3HAK.woff2") format("woff2"),
|
|
33
|
-
url("./assets/SohneBreit-Buch-FPHQDKKW.woff") format("woff");
|
|
24
|
+
src: url("./fonts/SohneBreit-Buch.eot");
|
|
25
|
+
src: url("./fonts/SohneBreit-Buch.eot?#iefix") format("embedded-opentype"), url("./fonts/SohneBreit-Buch.woff2") format("woff2"), url("./fonts/SohneBreit-Buch.woff") format("woff");
|
|
34
26
|
font-weight: normal;
|
|
35
27
|
font-style: normal;
|
|
36
28
|
font-display: swap;
|
|
@@ -108,6 +100,10 @@
|
|
|
108
100
|
.kima-card .kima-card-header .topbar .control-buttons {
|
|
109
101
|
display: flex;
|
|
110
102
|
align-items: center;
|
|
103
|
+
gap: 8px;
|
|
104
|
+
}
|
|
105
|
+
.kima-card .kima-card-header .topbar .control-buttons.complete {
|
|
106
|
+
width: 100%;
|
|
111
107
|
}
|
|
112
108
|
@media (max-width: 768px) {
|
|
113
109
|
.kima-card .kima-card-header .topbar .control-buttons {
|
|
@@ -118,13 +114,8 @@
|
|
|
118
114
|
background: transparent;
|
|
119
115
|
border: 1px solid rgba(119, 141, 163, 0.3019607843);
|
|
120
116
|
border-radius: 40px;
|
|
121
|
-
padding: 2px 8px;
|
|
122
117
|
cursor: pointer;
|
|
123
|
-
transition:
|
|
124
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
125
|
-
color 0ms,
|
|
126
|
-
background-color 0ms,
|
|
127
|
-
border-color 0ms;
|
|
118
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
128
119
|
}
|
|
129
120
|
.kima-card .kima-card-header .topbar .control-buttons .icon-button.minimize {
|
|
130
121
|
border: none;
|
|
@@ -133,8 +124,7 @@
|
|
|
133
124
|
margin-left: 13px;
|
|
134
125
|
padding: 4px 6px;
|
|
135
126
|
}
|
|
136
|
-
.kima-card .kima-card-header .topbar .control-buttons .icon-button:hover,
|
|
137
|
-
.kima-card .kima-card-header .topbar .control-buttons .icon-button:disabled {
|
|
127
|
+
.kima-card .kima-card-header .topbar .control-buttons .icon-button:hover, .kima-card .kima-card-header .topbar .control-buttons .icon-button:disabled {
|
|
138
128
|
opacity: 0.6;
|
|
139
129
|
}
|
|
140
130
|
.kima-card .kima-card-header .topbar .control-buttons .icon-button:disabled {
|
|
@@ -158,22 +148,16 @@
|
|
|
158
148
|
justify-content: center;
|
|
159
149
|
align-items: center;
|
|
160
150
|
padding: 4px;
|
|
161
|
-
width:
|
|
162
|
-
height:
|
|
151
|
+
width: 50px;
|
|
152
|
+
height: 50px;
|
|
163
153
|
border-radius: 9999px;
|
|
164
154
|
background: transparent;
|
|
165
155
|
cursor: pointer;
|
|
166
156
|
border: 1px solid rgba(119, 141, 163, 0.3019607843);
|
|
167
157
|
}
|
|
168
|
-
@media (max-width: 768px) {
|
|
169
|
-
.kima-card .kima-card-header .topbar .control-buttons .cross-icon-button {
|
|
170
|
-
width: 50px;
|
|
171
|
-
height: 50px;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
158
|
.kima-card .kima-card-header .topbar .control-buttons .cross-icon-button svg {
|
|
175
|
-
width:
|
|
176
|
-
height:
|
|
159
|
+
width: 20px;
|
|
160
|
+
height: 25px;
|
|
177
161
|
}
|
|
178
162
|
@media (max-width: 768px) {
|
|
179
163
|
.kima-card .kima-card-header .topbar .control-buttons .cross-icon-button svg {
|
|
@@ -181,8 +165,7 @@
|
|
|
181
165
|
height: 20px;
|
|
182
166
|
}
|
|
183
167
|
}
|
|
184
|
-
.kima-card .kima-card-header .topbar .control-buttons .cross-icon-button:hover,
|
|
185
|
-
.kima-card .kima-card-header .topbar .control-buttons .cross-icon-button:disabled {
|
|
168
|
+
.kima-card .kima-card-header .topbar .control-buttons .cross-icon-button:hover, .kima-card .kima-card-header .topbar .control-buttons .cross-icon-button:disabled {
|
|
186
169
|
opacity: 0.6;
|
|
187
170
|
}
|
|
188
171
|
.kima-card .kima-card-header .topbar .control-buttons .cross-icon-button:disabled {
|
|
@@ -193,7 +176,6 @@
|
|
|
193
176
|
color: #778da3;
|
|
194
177
|
text-decoration: none;
|
|
195
178
|
cursor: pointer;
|
|
196
|
-
margin-right: 1em;
|
|
197
179
|
}
|
|
198
180
|
.kima-card .kima-card-header .topbar .control-buttons .menu-button {
|
|
199
181
|
font-family: "Manrope";
|
|
@@ -238,34 +220,24 @@
|
|
|
238
220
|
display: flex;
|
|
239
221
|
flex-direction: row;
|
|
240
222
|
align-items: center;
|
|
241
|
-
gap:
|
|
223
|
+
gap: 12px;
|
|
242
224
|
margin-top: 20px;
|
|
225
|
+
margin-bottom: 10px;
|
|
243
226
|
}
|
|
244
227
|
.kima-card .kima-card-header .header-network-labels p {
|
|
245
228
|
padding: 0;
|
|
246
229
|
}
|
|
247
|
-
@media (max-width: 390px) {
|
|
248
|
-
.kima-card .kima-card-header .header-network-labels p {
|
|
249
|
-
display: none;
|
|
250
|
-
}
|
|
251
|
-
.kima-card .kima-card-header .header-network-labels .arrow {
|
|
252
|
-
transform: rotate(-180deg);
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
230
|
.kima-card .kima-card-header .header-network-labels .arrow {
|
|
256
231
|
transform: rotate(-90deg);
|
|
257
232
|
}
|
|
258
|
-
.kima-card .kima-card-header h4 {
|
|
259
|
-
font-weight: 300;
|
|
260
|
-
font-size: 14px;
|
|
261
|
-
margin-top: 20px;
|
|
262
|
-
margin-bottom: 30px;
|
|
263
|
-
}
|
|
264
233
|
.kima-card .kima-card-header .kima-card-network-label {
|
|
265
234
|
display: flex;
|
|
266
|
-
padding:
|
|
235
|
+
padding: 10px 14px;
|
|
236
|
+
font-weight: 600;
|
|
267
237
|
border-radius: 50px;
|
|
268
|
-
|
|
238
|
+
}
|
|
239
|
+
.kima-card .kima-card-header .kima-card-network-label h3 {
|
|
240
|
+
font-size: 12px;
|
|
269
241
|
}
|
|
270
242
|
.kima-card .kima-card-header .kima-card-network-label .icon {
|
|
271
243
|
border-radius: 9999px;
|
|
@@ -303,11 +275,7 @@
|
|
|
303
275
|
.kima-card .kima-card-footer {
|
|
304
276
|
display: flex;
|
|
305
277
|
align-items: center;
|
|
306
|
-
transition:
|
|
307
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
308
|
-
color 0ms,
|
|
309
|
-
background-color 0ms,
|
|
310
|
-
border-color 0ms;
|
|
278
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
311
279
|
max-height: 50px;
|
|
312
280
|
margin-top: 20px;
|
|
313
281
|
opacity: 1;
|
|
@@ -412,6 +380,11 @@
|
|
|
412
380
|
margin-top: 10px;
|
|
413
381
|
height: 35px;
|
|
414
382
|
}
|
|
383
|
+
@media (max-width: 768px) {
|
|
384
|
+
.kima-card .floating-footer.complete {
|
|
385
|
+
margin-top: 10px;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
415
388
|
@media (max-width: 768px) {
|
|
416
389
|
.kima-card .floating-footer {
|
|
417
390
|
margin-top: 35px;
|
|
@@ -446,11 +419,14 @@
|
|
|
446
419
|
.kima-card .floating-footer .items span.network {
|
|
447
420
|
font-weight: 800;
|
|
448
421
|
}
|
|
422
|
+
|
|
449
423
|
.kima-card {
|
|
450
424
|
font-family: "Manrope";
|
|
451
425
|
}
|
|
452
426
|
.kima-card .kima-card-content {
|
|
453
427
|
font-family: "Manrope";
|
|
428
|
+
/* Adds the inner dot and perfectly centers it */
|
|
429
|
+
/* Prevents text from pushing the radio button */
|
|
454
430
|
}
|
|
455
431
|
.kima-card .kima-card-content .error-message {
|
|
456
432
|
color: red;
|
|
@@ -481,12 +457,7 @@
|
|
|
481
457
|
z-index: 10;
|
|
482
458
|
height: 7px;
|
|
483
459
|
border-radius: 16px;
|
|
484
|
-
background:
|
|
485
|
-
linear-gradient(
|
|
486
|
-
90deg,
|
|
487
|
-
#adf4a6,
|
|
488
|
-
#80d7f5,
|
|
489
|
-
#9990d5);
|
|
460
|
+
background: linear-gradient(90deg, #adf4a6, #80d7f5, #9990d5);
|
|
490
461
|
transition: width 0.8s ease-in-out;
|
|
491
462
|
}
|
|
492
463
|
.kima-card .kima-card-content .kima-progressbar .value.step-25 {
|
|
@@ -503,12 +474,7 @@
|
|
|
503
474
|
}
|
|
504
475
|
@media (max-width: 500px) {
|
|
505
476
|
.kima-card .kima-card-content .kima-progressbar .value {
|
|
506
|
-
background:
|
|
507
|
-
linear-gradient(
|
|
508
|
-
180deg,
|
|
509
|
-
#adf4a6,
|
|
510
|
-
#80d7f5,
|
|
511
|
-
#9990d5);
|
|
477
|
+
background: linear-gradient(180deg, #adf4a6, #80d7f5, #9990d5);
|
|
512
478
|
width: 7px !important;
|
|
513
479
|
transition: height 0.8s ease-in-out;
|
|
514
480
|
}
|
|
@@ -546,6 +512,7 @@
|
|
|
546
512
|
margin-top: -21px;
|
|
547
513
|
position: relative;
|
|
548
514
|
border-radius: 40px;
|
|
515
|
+
filter: drop-shadow(0px 0px 22.105px rgba(134, 184, 206, 0.5));
|
|
549
516
|
}
|
|
550
517
|
@media (max-width: 768px) {
|
|
551
518
|
.kima-card .kima-card-content .kima-progressbar .step-indicators .step {
|
|
@@ -565,20 +532,17 @@
|
|
|
565
532
|
.kima-card .kima-card-content .kima-progressbar .step-indicators .step svg {
|
|
566
533
|
position: absolute;
|
|
567
534
|
}
|
|
568
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed,
|
|
569
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.active {
|
|
535
|
+
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed, .kima-card .kima-card-content .kima-progressbar .step-indicators .step.active {
|
|
570
536
|
border: 1px solid #86b8ce;
|
|
571
537
|
}
|
|
572
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed svg,
|
|
573
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.active svg {
|
|
538
|
+
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed svg, .kima-card .kima-card-content .kima-progressbar .step-indicators .step.active svg {
|
|
574
539
|
top: -53px;
|
|
575
540
|
left: 67px;
|
|
576
541
|
width: 41px;
|
|
577
542
|
height: 41px;
|
|
578
543
|
}
|
|
579
544
|
@media (max-width: 768px) {
|
|
580
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed svg,
|
|
581
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.active svg {
|
|
545
|
+
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed svg, .kima-card .kima-card-content .kima-progressbar .step-indicators .step.active svg {
|
|
582
546
|
width: 32px;
|
|
583
547
|
height: 32px;
|
|
584
548
|
top: -45px;
|
|
@@ -586,37 +550,31 @@
|
|
|
586
550
|
}
|
|
587
551
|
}
|
|
588
552
|
@media (max-width: 500px) {
|
|
589
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed svg,
|
|
590
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.active svg {
|
|
553
|
+
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed svg, .kima-card .kima-card-content .kima-progressbar .step-indicators .step.active svg {
|
|
591
554
|
width: 41px;
|
|
592
555
|
height: 41px;
|
|
593
556
|
top: -42px;
|
|
594
557
|
left: 43px;
|
|
595
558
|
}
|
|
596
559
|
}
|
|
597
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed:first-of-type svg,
|
|
598
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.active:first-of-type svg {
|
|
560
|
+
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed:first-of-type svg, .kima-card .kima-card-content .kima-progressbar .step-indicators .step.active:first-of-type svg {
|
|
599
561
|
left: -41px;
|
|
600
562
|
}
|
|
601
563
|
@media (max-width: 768px) {
|
|
602
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed:first-of-type svg,
|
|
603
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.active:first-of-type svg {
|
|
564
|
+
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed:first-of-type svg, .kima-card .kima-card-content .kima-progressbar .step-indicators .step.active:first-of-type svg {
|
|
604
565
|
left: 13px;
|
|
605
566
|
}
|
|
606
567
|
}
|
|
607
568
|
@media (max-width: 500px) {
|
|
608
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed:first-of-type svg,
|
|
609
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.active:first-of-type svg {
|
|
569
|
+
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed:first-of-type svg, .kima-card .kima-card-content .kima-progressbar .step-indicators .step.active:first-of-type svg {
|
|
610
570
|
left: 16px;
|
|
611
571
|
}
|
|
612
572
|
}
|
|
613
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed:last-of-type svg,
|
|
614
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.active:last-of-type svg {
|
|
573
|
+
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed:last-of-type svg, .kima-card .kima-card-content .kima-progressbar .step-indicators .step.active:last-of-type svg {
|
|
615
574
|
right: 20px;
|
|
616
575
|
}
|
|
617
576
|
@media (max-width: 768px) {
|
|
618
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed:last-of-type svg,
|
|
619
|
-
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.active:last-of-type svg {
|
|
577
|
+
.kima-card .kima-card-content .kima-progressbar .step-indicators .step.completed:last-of-type svg, .kima-card .kima-card-content .kima-progressbar .step-indicators .step.active:last-of-type svg {
|
|
620
578
|
right: -5px;
|
|
621
579
|
}
|
|
622
580
|
}
|
|
@@ -723,11 +681,7 @@
|
|
|
723
681
|
display: flex;
|
|
724
682
|
justify-content: center;
|
|
725
683
|
align-items: center;
|
|
726
|
-
transition:
|
|
727
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
728
|
-
color 0ms,
|
|
729
|
-
background-color 0ms,
|
|
730
|
-
border-color 0ms;
|
|
684
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
731
685
|
font-weight: 300;
|
|
732
686
|
}
|
|
733
687
|
.kima-card .kima-card-content .kima-progressbar .step-indicators .step .step-info span {
|
|
@@ -815,11 +769,7 @@
|
|
|
815
769
|
width: 50%;
|
|
816
770
|
display: flex;
|
|
817
771
|
justify-content: center;
|
|
818
|
-
transition:
|
|
819
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
820
|
-
color 0ms,
|
|
821
|
-
background-color 0ms,
|
|
822
|
-
border-color 0ms;
|
|
772
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
823
773
|
}
|
|
824
774
|
.kima-card .kima-card-content .kima-tooltip > div.position-first {
|
|
825
775
|
left: -1em !important;
|
|
@@ -860,15 +810,15 @@
|
|
|
860
810
|
top: -1.5em;
|
|
861
811
|
background: #66aae5;
|
|
862
812
|
clip-path: polygon(50% 0, 100% 100%, 0 100%);
|
|
863
|
-
transition:
|
|
864
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
865
|
-
color 0ms,
|
|
866
|
-
background-color 0ms,
|
|
867
|
-
border-color 0ms;
|
|
813
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
868
814
|
}
|
|
869
815
|
.kima-card .kima-card-content .kima-tooltip > div .content-wrapper .info-item {
|
|
870
816
|
position: relative;
|
|
871
817
|
}
|
|
818
|
+
.kima-card .kima-card-content .kima-tooltip > div .content-wrapper .info-item .info-icon {
|
|
819
|
+
background: white;
|
|
820
|
+
padding: 4px;
|
|
821
|
+
}
|
|
872
822
|
.kima-card .kima-card-content .kima-tooltip > div .content-wrapper .info-item:not(:first-of-type) {
|
|
873
823
|
margin-top: 0.8em;
|
|
874
824
|
}
|
|
@@ -881,11 +831,7 @@
|
|
|
881
831
|
.kima-card .kima-card-content .kima-tooltip > div .content-wrapper .info-item p .copy-btn {
|
|
882
832
|
display: inline;
|
|
883
833
|
cursor: pointer;
|
|
884
|
-
transition:
|
|
885
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
886
|
-
color 0ms,
|
|
887
|
-
background-color 0ms,
|
|
888
|
-
border-color 0ms;
|
|
834
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
889
835
|
}
|
|
890
836
|
.kima-card .kima-card-content .kima-tooltip > div .content-wrapper .info-item p .copy-btn:hover {
|
|
891
837
|
opacity: 0.7;
|
|
@@ -917,11 +863,7 @@
|
|
|
917
863
|
top: -1.5em;
|
|
918
864
|
background: #66aae5;
|
|
919
865
|
clip-path: polygon(50% 0, 100% 100%, 0 100%);
|
|
920
|
-
transition:
|
|
921
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
922
|
-
color 0ms,
|
|
923
|
-
background-color 0ms,
|
|
924
|
-
border-color 0ms;
|
|
866
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
925
867
|
}
|
|
926
868
|
}
|
|
927
869
|
.kima-card .kima-card-content .dropdown-icon {
|
|
@@ -930,11 +872,7 @@
|
|
|
930
872
|
position: absolute;
|
|
931
873
|
width: 10px;
|
|
932
874
|
height: 10px;
|
|
933
|
-
transition:
|
|
934
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
935
|
-
color 0ms,
|
|
936
|
-
background-color 0ms,
|
|
937
|
-
border-color 0ms;
|
|
875
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
938
876
|
}
|
|
939
877
|
.kima-card .kima-card-content .dropdown-icon.collapsed {
|
|
940
878
|
right: 10px;
|
|
@@ -1044,11 +982,7 @@
|
|
|
1044
982
|
border-radius: 0.8em;
|
|
1045
983
|
padding: 0 0.8em;
|
|
1046
984
|
cursor: pointer;
|
|
1047
|
-
transition:
|
|
1048
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1049
|
-
color 0ms,
|
|
1050
|
-
background-color 0ms,
|
|
1051
|
-
border-color 0ms;
|
|
985
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1052
986
|
}
|
|
1053
987
|
.kima-card .kima-card-content .single-form .form-item .network-item svg {
|
|
1054
988
|
width: 2em;
|
|
@@ -1358,11 +1292,7 @@
|
|
|
1358
1292
|
align-items: center;
|
|
1359
1293
|
cursor: pointer;
|
|
1360
1294
|
box-sizing: content-box;
|
|
1361
|
-
transition:
|
|
1362
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1363
|
-
color 0ms,
|
|
1364
|
-
background-color 0ms,
|
|
1365
|
-
border-color 0ms;
|
|
1295
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1366
1296
|
}
|
|
1367
1297
|
@media (max-width: 639px) {
|
|
1368
1298
|
.kima-card .kima-card-content .single-form .coin-dropdown {
|
|
@@ -1411,11 +1341,7 @@
|
|
|
1411
1341
|
border-right: 2px solid;
|
|
1412
1342
|
border-color: white;
|
|
1413
1343
|
transform: rotate(-45deg);
|
|
1414
|
-
transition:
|
|
1415
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1416
|
-
color 0ms,
|
|
1417
|
-
background-color 0ms,
|
|
1418
|
-
border-color 0ms;
|
|
1344
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1419
1345
|
}
|
|
1420
1346
|
.kima-card .kima-card-content .single-form .coin-dropdown .coin-menu {
|
|
1421
1347
|
border: 0.5px solid #86b8ce;
|
|
@@ -1428,11 +1354,7 @@
|
|
|
1428
1354
|
top: 100%;
|
|
1429
1355
|
left: -0.5px;
|
|
1430
1356
|
overflow: hidden;
|
|
1431
|
-
transition:
|
|
1432
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1433
|
-
color 0ms,
|
|
1434
|
-
background-color 0ms,
|
|
1435
|
-
border-color 0ms;
|
|
1357
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1436
1358
|
padding: 0.5em 0;
|
|
1437
1359
|
}
|
|
1438
1360
|
.kima-card .kima-card-content .single-form .coin-dropdown .coin-menu .coin-item {
|
|
@@ -1440,11 +1362,7 @@
|
|
|
1440
1362
|
padding: 2.5px 12px;
|
|
1441
1363
|
border-radius: 20px;
|
|
1442
1364
|
max-width: 240px;
|
|
1443
|
-
transition:
|
|
1444
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1445
|
-
color 0ms,
|
|
1446
|
-
background-color 0ms,
|
|
1447
|
-
border-color 0ms;
|
|
1365
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1448
1366
|
display: flex;
|
|
1449
1367
|
justify-content: start;
|
|
1450
1368
|
flex-direction: row;
|
|
@@ -1526,11 +1444,7 @@
|
|
|
1526
1444
|
border-right: 2px solid;
|
|
1527
1445
|
border-color: white;
|
|
1528
1446
|
transform: rotate(-45deg);
|
|
1529
|
-
transition:
|
|
1530
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1531
|
-
color 0ms,
|
|
1532
|
-
background-color 0ms,
|
|
1533
|
-
border-color 0ms;
|
|
1447
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1534
1448
|
}
|
|
1535
1449
|
.kima-card .kima-card-content .single-form .expire-time-dropdown .expire-time-menu {
|
|
1536
1450
|
box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
|
|
@@ -1541,20 +1455,12 @@
|
|
|
1541
1455
|
top: calc(100% - 0.5em);
|
|
1542
1456
|
left: 0;
|
|
1543
1457
|
overflow: hidden;
|
|
1544
|
-
transition:
|
|
1545
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1546
|
-
color 0ms,
|
|
1547
|
-
background-color 0ms,
|
|
1548
|
-
border-color 0ms;
|
|
1458
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1549
1459
|
}
|
|
1550
1460
|
.kima-card .kima-card-content .single-form .expire-time-dropdown .expire-time-menu .expire-time-item {
|
|
1551
1461
|
padding: 0.5em 1em;
|
|
1552
1462
|
margin: 0;
|
|
1553
|
-
transition:
|
|
1554
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1555
|
-
color 0ms,
|
|
1556
|
-
background-color 0ms,
|
|
1557
|
-
border-color 0ms;
|
|
1463
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1558
1464
|
display: flex;
|
|
1559
1465
|
align-items: center;
|
|
1560
1466
|
}
|
|
@@ -1603,11 +1509,7 @@
|
|
|
1603
1509
|
align-items: center;
|
|
1604
1510
|
cursor: pointer;
|
|
1605
1511
|
box-sizing: content-box;
|
|
1606
|
-
transition:
|
|
1607
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1608
|
-
color 0ms,
|
|
1609
|
-
background-color 0ms,
|
|
1610
|
-
border-color 0ms;
|
|
1512
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1611
1513
|
}
|
|
1612
1514
|
@media (max-width: 586px) {
|
|
1613
1515
|
.kima-card .kima-card-content .single-form .network-dropdown {
|
|
@@ -1655,11 +1557,7 @@
|
|
|
1655
1557
|
border-right: 2px solid;
|
|
1656
1558
|
border-color: white;
|
|
1657
1559
|
transform: rotate(-45deg);
|
|
1658
|
-
transition:
|
|
1659
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1660
|
-
color 0ms,
|
|
1661
|
-
background-color 0ms,
|
|
1662
|
-
border-color 0ms;
|
|
1560
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1663
1561
|
}
|
|
1664
1562
|
.kima-card .kima-card-content .single-form .network-dropdown .network-menu {
|
|
1665
1563
|
border: 0.5px solid #86b8ce;
|
|
@@ -1673,22 +1571,14 @@
|
|
|
1673
1571
|
left: -0.5px;
|
|
1674
1572
|
overflow-x: clip;
|
|
1675
1573
|
overflow-y: scroll;
|
|
1676
|
-
transition:
|
|
1677
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1678
|
-
color 0ms,
|
|
1679
|
-
background-color 0ms,
|
|
1680
|
-
border-color 0ms;
|
|
1574
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1681
1575
|
}
|
|
1682
1576
|
.kima-card .kima-card-content .single-form .network-dropdown .network-menu-item {
|
|
1683
1577
|
margin: 7px 14px;
|
|
1684
1578
|
padding: 11px 7px;
|
|
1685
1579
|
border-radius: 20px;
|
|
1686
1580
|
width: 220px;
|
|
1687
|
-
transition:
|
|
1688
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1689
|
-
color 0ms,
|
|
1690
|
-
background-color 0ms,
|
|
1691
|
-
border-color 0ms;
|
|
1581
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1692
1582
|
display: flex;
|
|
1693
1583
|
justify-content: start;
|
|
1694
1584
|
flex-direction: row;
|
|
@@ -1773,11 +1663,7 @@
|
|
|
1773
1663
|
.kima-card .kima-card-content .single-form .dynamic-area {
|
|
1774
1664
|
display: flex;
|
|
1775
1665
|
flex-direction: column;
|
|
1776
|
-
transition:
|
|
1777
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1778
|
-
color 0ms,
|
|
1779
|
-
background-color 0ms,
|
|
1780
|
-
border-color 0ms;
|
|
1666
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
1781
1667
|
}
|
|
1782
1668
|
@media (max-width: 500px) {
|
|
1783
1669
|
.kima-card .kima-card-content .single-form .dynamic-area {
|
|
@@ -2266,17 +2152,94 @@
|
|
|
2266
2152
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper {
|
|
2267
2153
|
display: flex;
|
|
2268
2154
|
flex-direction: column;
|
|
2269
|
-
border:
|
|
2155
|
+
border: 1.5px solid #86b8ce;
|
|
2270
2156
|
border-radius: 30px;
|
|
2271
2157
|
padding: 12px 24px;
|
|
2158
|
+
gap: 5px;
|
|
2159
|
+
}
|
|
2160
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete {
|
|
2161
|
+
padding: 20px 60px;
|
|
2162
|
+
border: 1.5px solid #86b8ce;
|
|
2163
|
+
}
|
|
2164
|
+
@media (max-width: 600px) {
|
|
2165
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete {
|
|
2166
|
+
padding: 10px 20px;
|
|
2167
|
+
}
|
|
2168
|
+
}
|
|
2169
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete p {
|
|
2170
|
+
text-align: center;
|
|
2171
|
+
font-size: 16px;
|
|
2172
|
+
font-weight: 600;
|
|
2173
|
+
font-family: "Manrope";
|
|
2174
|
+
}
|
|
2175
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .header-network-labels {
|
|
2176
|
+
display: flex;
|
|
2177
|
+
flex-direction: row;
|
|
2178
|
+
align-items: center;
|
|
2179
|
+
justify-content: center;
|
|
2180
|
+
gap: 12px;
|
|
2181
|
+
margin-top: 20px;
|
|
2182
|
+
margin-bottom: 10px;
|
|
2183
|
+
}
|
|
2184
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .header-network-labels p {
|
|
2185
|
+
padding: 0;
|
|
2186
|
+
}
|
|
2187
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .header-network-labels .arrow {
|
|
2188
|
+
transform: rotate(-90deg);
|
|
2189
|
+
}
|
|
2190
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .header-network-labels.light {
|
|
2191
|
+
background-color: #edf2f5 !important;
|
|
2192
|
+
}
|
|
2193
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .header-network-labels.dark {
|
|
2194
|
+
background-color: #4a5068 !important;
|
|
2195
|
+
color: white;
|
|
2196
|
+
}
|
|
2197
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .kima-card-network-label {
|
|
2198
|
+
display: flex;
|
|
2199
|
+
padding: 10px 14px;
|
|
2200
|
+
font-weight: 600;
|
|
2201
|
+
border-radius: 50px;
|
|
2202
|
+
}
|
|
2203
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .kima-card-network-label h3 {
|
|
2204
|
+
font-size: 12px;
|
|
2205
|
+
}
|
|
2206
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .kima-card-network-label .icon {
|
|
2207
|
+
border-radius: 9999px;
|
|
2208
|
+
background-color: white;
|
|
2209
|
+
padding: 4px;
|
|
2210
|
+
display: flex;
|
|
2211
|
+
justify-content: center;
|
|
2212
|
+
}
|
|
2213
|
+
@media (max-width: 500px) {
|
|
2214
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .kima-card-network-label {
|
|
2215
|
+
font-size: 14px;
|
|
2216
|
+
}
|
|
2217
|
+
}
|
|
2218
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .kima-card-network-label.light {
|
|
2219
|
+
background-color: #d6e4ea;
|
|
2220
|
+
color: black;
|
|
2221
|
+
}
|
|
2222
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.transaction-complete .kima-card-network-label.dark {
|
|
2223
|
+
background-color: #4a5068;
|
|
2224
|
+
color: white;
|
|
2272
2225
|
}
|
|
2273
2226
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper.light {
|
|
2274
2227
|
background-color: #edf2f5;
|
|
2275
2228
|
}
|
|
2229
|
+
@media (max-width: 500px) {
|
|
2230
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.light:not(.transaction-complete) {
|
|
2231
|
+
background-color: transparent;
|
|
2232
|
+
}
|
|
2233
|
+
}
|
|
2276
2234
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper.dark {
|
|
2277
2235
|
background-color: #4a5068;
|
|
2278
2236
|
color: white;
|
|
2279
2237
|
}
|
|
2238
|
+
@media (max-width: 500px) {
|
|
2239
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper.dark:not(.transaction-complete) {
|
|
2240
|
+
background-color: transparent;
|
|
2241
|
+
}
|
|
2242
|
+
}
|
|
2280
2243
|
@media (min-width: 500px) {
|
|
2281
2244
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper {
|
|
2282
2245
|
min-width: 420px;
|
|
@@ -2288,7 +2251,7 @@
|
|
|
2288
2251
|
gap: 5px;
|
|
2289
2252
|
justify-content: space-between;
|
|
2290
2253
|
border: none;
|
|
2291
|
-
background-color: transparent
|
|
2254
|
+
background-color: transparent;
|
|
2292
2255
|
}
|
|
2293
2256
|
}
|
|
2294
2257
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper .step-item {
|
|
@@ -2307,12 +2270,22 @@
|
|
|
2307
2270
|
}
|
|
2308
2271
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper .step-item .info-item {
|
|
2309
2272
|
position: relative;
|
|
2310
|
-
align-items:
|
|
2273
|
+
align-items: start;
|
|
2274
|
+
display: flex;
|
|
2275
|
+
gap: 10px;
|
|
2276
|
+
}
|
|
2277
|
+
.kima-card .kima-card-content .kima-stepbox .content-wrapper .step-item .info-item .info-icon svg {
|
|
2278
|
+
background: white;
|
|
2279
|
+
padding: 4px;
|
|
2280
|
+
border-radius: 9999px;
|
|
2281
|
+
margin-right: 10px;
|
|
2282
|
+
filter: drop-shadow(0px 0px 22.105px rgba(134, 184, 206, 0.5));
|
|
2311
2283
|
}
|
|
2312
2284
|
@media (max-width: 500px) {
|
|
2313
2285
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper .step-item .info-item {
|
|
2314
2286
|
width: 210px;
|
|
2315
2287
|
height: 40px;
|
|
2288
|
+
align-items: center;
|
|
2316
2289
|
}
|
|
2317
2290
|
}
|
|
2318
2291
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper .step-item .info-item .icon {
|
|
@@ -2370,11 +2343,7 @@
|
|
|
2370
2343
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper .step-item .info-item:not(:first-of-type) p .copy-btn {
|
|
2371
2344
|
display: inline;
|
|
2372
2345
|
cursor: pointer;
|
|
2373
|
-
transition:
|
|
2374
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
2375
|
-
color 0ms,
|
|
2376
|
-
background-color 0ms,
|
|
2377
|
-
border-color 0ms;
|
|
2346
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
2378
2347
|
}
|
|
2379
2348
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper .step-item .info-item:not(:first-of-type) p .copy-btn:hover {
|
|
2380
2349
|
opacity: 0.7;
|
|
@@ -2385,16 +2354,16 @@
|
|
|
2385
2354
|
margin-left: 7px;
|
|
2386
2355
|
}
|
|
2387
2356
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper .step-item .info-item.locked svg {
|
|
2388
|
-
margin-top:
|
|
2389
|
-
width:
|
|
2390
|
-
height:
|
|
2391
|
-
left:
|
|
2357
|
+
margin-top: -2.5px;
|
|
2358
|
+
width: 28px;
|
|
2359
|
+
height: 28px;
|
|
2360
|
+
left: -4px;
|
|
2361
|
+
padding: 6px;
|
|
2392
2362
|
}
|
|
2393
2363
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper .step-item .info-item.active svg {
|
|
2394
|
-
margin-top: -
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
left: -8.5px;
|
|
2364
|
+
margin-top: -4.5px;
|
|
2365
|
+
left: -4.5px;
|
|
2366
|
+
padding: 2px;
|
|
2398
2367
|
}
|
|
2399
2368
|
.kima-card .kima-card-content .kima-stepbox .content-wrapper .step-item .info-item.error svg {
|
|
2400
2369
|
margin-top: -4.5px;
|
|
@@ -2519,7 +2488,7 @@
|
|
|
2519
2488
|
}
|
|
2520
2489
|
.kima-card .kima-card-content .fee-option {
|
|
2521
2490
|
display: flex;
|
|
2522
|
-
align-items: center;
|
|
2491
|
+
align-items: center; /* Ensures both text and radio button align */
|
|
2523
2492
|
gap: 10px;
|
|
2524
2493
|
cursor: pointer;
|
|
2525
2494
|
}
|
|
@@ -2620,11 +2589,7 @@
|
|
|
2620
2589
|
cursor: pointer;
|
|
2621
2590
|
text-decoration: none;
|
|
2622
2591
|
color: inherit;
|
|
2623
|
-
transition:
|
|
2624
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
2625
|
-
color 0ms,
|
|
2626
|
-
background-color 0ms,
|
|
2627
|
-
border-color 0ms;
|
|
2592
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
2628
2593
|
border: 1px solid rgba(119, 141, 163, 0.3019607843);
|
|
2629
2594
|
}
|
|
2630
2595
|
.kima-card .card-item .wallet-item {
|
|
@@ -2698,12 +2663,7 @@
|
|
|
2698
2663
|
cursor: pointer;
|
|
2699
2664
|
}
|
|
2700
2665
|
.kima-card .primary-button-wrapper {
|
|
2701
|
-
background:
|
|
2702
|
-
linear-gradient(
|
|
2703
|
-
to right,
|
|
2704
|
-
#8d77cc,
|
|
2705
|
-
#7bd5fb,
|
|
2706
|
-
#b2f79c);
|
|
2666
|
+
background: linear-gradient(to right, #8d77cc, #7bd5fb, #b2f79c);
|
|
2707
2667
|
padding: 2px;
|
|
2708
2668
|
border-radius: 30px;
|
|
2709
2669
|
max-height: 48px;
|
|
@@ -2724,11 +2684,7 @@
|
|
|
2724
2684
|
font-weight: bold;
|
|
2725
2685
|
font-family: inherit;
|
|
2726
2686
|
border: none;
|
|
2727
|
-
transition:
|
|
2728
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
2729
|
-
color 0ms,
|
|
2730
|
-
background-color 0ms,
|
|
2731
|
-
border-color 0ms;
|
|
2687
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
2732
2688
|
display: flex;
|
|
2733
2689
|
align-items: center;
|
|
2734
2690
|
justify-content: center;
|
|
@@ -2738,8 +2694,7 @@
|
|
|
2738
2694
|
.kima-card .primary-button.light {
|
|
2739
2695
|
background-color: black;
|
|
2740
2696
|
}
|
|
2741
|
-
.kima-card .primary-button:hover,
|
|
2742
|
-
.kima-card .primary-button:disabled {
|
|
2697
|
+
.kima-card .primary-button:hover, .kima-card .primary-button:disabled {
|
|
2743
2698
|
opacity: 0.7;
|
|
2744
2699
|
}
|
|
2745
2700
|
.kima-card .primary-button:disabled {
|
|
@@ -2775,11 +2730,7 @@
|
|
|
2775
2730
|
border: 1px solid;
|
|
2776
2731
|
letter-spacing: 0;
|
|
2777
2732
|
font-size: 16px;
|
|
2778
|
-
transition:
|
|
2779
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
2780
|
-
color 0ms,
|
|
2781
|
-
background-color 0ms,
|
|
2782
|
-
border-color 0ms;
|
|
2733
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
2783
2734
|
display: flex;
|
|
2784
2735
|
align-items: center;
|
|
2785
2736
|
justify-content: center;
|
|
@@ -2793,8 +2744,7 @@
|
|
|
2793
2744
|
color: black;
|
|
2794
2745
|
border-color: black;
|
|
2795
2746
|
}
|
|
2796
|
-
.kima-card .secondary-button:hover,
|
|
2797
|
-
.kima-card .secondary-button:disabled {
|
|
2747
|
+
.kima-card .secondary-button:hover, .kima-card .secondary-button:disabled {
|
|
2798
2748
|
opacity: 0.7;
|
|
2799
2749
|
}
|
|
2800
2750
|
.kima-card .secondary-button:disabled {
|
|
@@ -2827,19 +2777,11 @@
|
|
|
2827
2777
|
max-height: 10em;
|
|
2828
2778
|
width: max-content;
|
|
2829
2779
|
overflow: hidden;
|
|
2830
|
-
transition:
|
|
2831
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
2832
|
-
color 0ms,
|
|
2833
|
-
background-color 0ms,
|
|
2834
|
-
border-color 0ms;
|
|
2780
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
2835
2781
|
}
|
|
2836
2782
|
.kima-card .dropdown-menu .menu-item {
|
|
2837
2783
|
padding: 0.5em 1em;
|
|
2838
|
-
transition:
|
|
2839
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
2840
|
-
color 0ms,
|
|
2841
|
-
background-color 0ms,
|
|
2842
|
-
border-color 0ms;
|
|
2784
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
2843
2785
|
}
|
|
2844
2786
|
.kima-card .dropdown-menu .menu-item:hover {
|
|
2845
2787
|
background: #d6e4ea;
|
|
@@ -2860,6 +2802,7 @@
|
|
|
2860
2802
|
color: black;
|
|
2861
2803
|
background-color: white;
|
|
2862
2804
|
}
|
|
2805
|
+
|
|
2863
2806
|
.kima-modal {
|
|
2864
2807
|
position: fixed;
|
|
2865
2808
|
z-index: 999999;
|
|
@@ -3077,11 +3020,7 @@
|
|
|
3077
3020
|
align-items: center;
|
|
3078
3021
|
column-gap: 1em;
|
|
3079
3022
|
padding: 0.4em 1em;
|
|
3080
|
-
transition:
|
|
3081
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
3082
|
-
color 0ms,
|
|
3083
|
-
background-color 0ms,
|
|
3084
|
-
border-color 0ms;
|
|
3023
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
3085
3024
|
}
|
|
3086
3025
|
.kima-modal.pending-tx-popup .modal-content .scroll-area .tx-container .tx-item:hover {
|
|
3087
3026
|
background-color: rgba(90, 160, 219, 0.1254901961);
|
|
@@ -3109,11 +3048,7 @@
|
|
|
3109
3048
|
display: flex;
|
|
3110
3049
|
justify-content: center;
|
|
3111
3050
|
cursor: pointer;
|
|
3112
|
-
transition:
|
|
3113
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
3114
|
-
color 0ms,
|
|
3115
|
-
background-color 0ms,
|
|
3116
|
-
border-color 0ms;
|
|
3051
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
3117
3052
|
}
|
|
3118
3053
|
.kima-modal.pending-tx-popup .modal-content .scroll-area .tx-container .tx-item .action-button-container .action-button:hover {
|
|
3119
3054
|
opacity: 0.7;
|
|
@@ -3162,24 +3097,19 @@
|
|
|
3162
3097
|
margin: 2em auto 0;
|
|
3163
3098
|
width: 16em;
|
|
3164
3099
|
}
|
|
3100
|
+
|
|
3165
3101
|
@font-face {
|
|
3166
3102
|
font-family: "Manrope";
|
|
3167
|
-
src: url("./
|
|
3168
|
-
src:
|
|
3169
|
-
url("./assets/Manrope-ExtraLight-6KZAMPI7.eot?#iefix") format("embedded-opentype"),
|
|
3170
|
-
url("./assets/Manrope-ExtraLight-6BGXUBPE.woff2") format("woff2"),
|
|
3171
|
-
url("./assets/Manrope-ExtraLight-47OLGDTA.woff") format("woff");
|
|
3103
|
+
src: url("./fonts/Manrope-ExtraLight.eot");
|
|
3104
|
+
src: url("./fonts/Manrope-ExtraLight.eot?#iefix") format("embedded-opentype"), url("./fonts/Manrope-ExtraLight.woff2") format("woff2"), url("./fonts/Manrope-ExtraLight.woff") format("woff");
|
|
3172
3105
|
font-weight: 200;
|
|
3173
3106
|
font-style: normal;
|
|
3174
3107
|
font-display: swap;
|
|
3175
3108
|
}
|
|
3176
3109
|
@font-face {
|
|
3177
3110
|
font-family: "Sohne";
|
|
3178
|
-
src: url("./
|
|
3179
|
-
src:
|
|
3180
|
-
url("./assets/SohneBreit-Buch-VTQ4XGFE.eot?#iefix") format("embedded-opentype"),
|
|
3181
|
-
url("./assets/SohneBreit-Buch-UDQP3HAK.woff2") format("woff2"),
|
|
3182
|
-
url("./assets/SohneBreit-Buch-FPHQDKKW.woff") format("woff");
|
|
3111
|
+
src: url("./fonts/SohneBreit-Buch.eot");
|
|
3112
|
+
src: url("./fonts/SohneBreit-Buch.eot?#iefix") format("embedded-opentype"), url("./fonts/SohneBreit-Buch.woff2") format("woff2"), url("./fonts/SohneBreit-Buch.woff") format("woff");
|
|
3183
3113
|
font-weight: normal;
|
|
3184
3114
|
font-style: normal;
|
|
3185
3115
|
font-display: swap;
|
|
@@ -3188,12 +3118,20 @@
|
|
|
3188
3118
|
border: 2px solid rgba(119, 141, 163, 0.3019607843);
|
|
3189
3119
|
border-radius: 42px;
|
|
3190
3120
|
width: 100%;
|
|
3191
|
-
transition:
|
|
3192
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
3193
|
-
color 0ms,
|
|
3194
|
-
background-color 0ms,
|
|
3195
|
-
border-color 0ms;
|
|
3121
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
3196
3122
|
max-width: 950px;
|
|
3123
|
+
/* Firefox */
|
|
3124
|
+
/* Modal overlay */
|
|
3125
|
+
/* Modal container */
|
|
3126
|
+
/* Modal title */
|
|
3127
|
+
/* Modal message */
|
|
3128
|
+
/* Button container */
|
|
3129
|
+
/* Responsive behavior for small screens (bottom sheet style) */
|
|
3130
|
+
}
|
|
3131
|
+
@media (min-width: 1000px) {
|
|
3132
|
+
.kima-card {
|
|
3133
|
+
min-width: 900px;
|
|
3134
|
+
}
|
|
3197
3135
|
}
|
|
3198
3136
|
.kima-card .transfer-card {
|
|
3199
3137
|
min-width: 800px;
|
|
@@ -3259,11 +3197,7 @@
|
|
|
3259
3197
|
z-index: 10;
|
|
3260
3198
|
display: flex;
|
|
3261
3199
|
flex-direction: column;
|
|
3262
|
-
transition:
|
|
3263
|
-
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
3264
|
-
color 0ms,
|
|
3265
|
-
background-color 0ms,
|
|
3266
|
-
border-color 0ms;
|
|
3200
|
+
transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), color 0ms, background-color 0ms, border-color 0ms;
|
|
3267
3201
|
}
|
|
3268
3202
|
.kima-card-content .cc-widget {
|
|
3269
3203
|
width: 100%;
|
|
@@ -3320,6 +3254,23 @@
|
|
|
3320
3254
|
display: flex;
|
|
3321
3255
|
flex-direction: column;
|
|
3322
3256
|
}
|
|
3257
|
+
.kima-card.transaction-card .kima-card-content .transaction-content.transaction-complete {
|
|
3258
|
+
justify-content: center;
|
|
3259
|
+
align-items: center;
|
|
3260
|
+
flex-direction: column;
|
|
3261
|
+
}
|
|
3262
|
+
.kima-card.transaction-card .kima-card-content .transaction-content.transaction-complete .transaction-buttons {
|
|
3263
|
+
display: flex;
|
|
3264
|
+
gap: 10px;
|
|
3265
|
+
margin-top: 20px;
|
|
3266
|
+
}
|
|
3267
|
+
.kima-card.transaction-card .kima-card-content .transaction-content.transaction-complete h2 {
|
|
3268
|
+
font-family: "Sohne";
|
|
3269
|
+
font-size: 26px;
|
|
3270
|
+
margin: 20px 0px;
|
|
3271
|
+
margin-bottom: 30px;
|
|
3272
|
+
text-align: center;
|
|
3273
|
+
}
|
|
3323
3274
|
@media (max-width: 500px) {
|
|
3324
3275
|
.kima-card.transaction-card .kima-card-content .transaction-content {
|
|
3325
3276
|
flex-direction: row;
|
|
@@ -3388,8 +3339,8 @@
|
|
|
3388
3339
|
-moz-appearance: textfield;
|
|
3389
3340
|
}
|
|
3390
3341
|
.kima-card .hide-scrollbar {
|
|
3391
|
-
-ms-overflow-style: none;
|
|
3392
|
-
scrollbar-width: none;
|
|
3342
|
+
-ms-overflow-style: none; /* IE and Edge */
|
|
3343
|
+
scrollbar-width: none; /* Firefox */
|
|
3393
3344
|
}
|
|
3394
3345
|
.kima-card .hide-scrollbar::-webkit-scrollbar {
|
|
3395
3346
|
display: none;
|
|
@@ -3516,4 +3467,5 @@
|
|
|
3516
3467
|
width: 100%;
|
|
3517
3468
|
}
|
|
3518
3469
|
}
|
|
3519
|
-
|
|
3470
|
+
|
|
3471
|
+
/*# sourceMappingURL=index.css.map */
|