@incodetech/web 2.0.0-alpha.4 → 2.0.0-alpha.6
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/base.css +230 -0
- package/dist/email/email.es.js +3 -3
- package/dist/flow/flow.es.js +555 -7
- package/dist/flow/styles.css +419 -189
- package/dist/{incodeModule-Ct9jp5k6.js → incodeModule-BuCBWati.js} +56 -58
- package/dist/index.es.js +4 -99
- package/dist/{title-ng7q7YDh.js → instance-B-q0ZREN.js} +194 -215
- package/dist/{otpInput-BUrV4IAF.js → otpInput-cq1THeRd.js} +1 -1
- package/dist/phone/phone.es.js +3 -4
- package/dist/{button-DeMZ_34N.js → preact-custom-element.esm-BGQkPkOv.js} +145 -166
- package/dist/selfie/selfie.es.js +63 -63
- package/dist/selfie/styles.css +267 -787
- package/dist/setup-wNL83jmW.js +20 -0
- package/dist/title-XSxhaBDx.js +25 -0
- package/dist/types/email/email.d.ts +1 -1
- package/dist/types/email/styles.d.ts +1 -0
- package/dist/types/email.d.ts +1 -1
- package/dist/types/flow/flow.d.ts +1 -1
- package/dist/types/flow/styles.d.ts +1 -0
- package/dist/types/flow.d.ts +2 -2
- package/dist/types/index.d.ts +4 -99
- package/dist/types/phone/phone.d.ts +1 -1
- package/dist/types/phone/styles.d.ts +1 -0
- package/dist/types/phone.d.ts +1 -1
- package/dist/types/selfie/selfie.d.ts +1 -1
- package/dist/types/selfie/styles.d.ts +1 -0
- package/dist/types/selfie.d.ts +1 -1
- package/dist/types/styles.d.ts +1 -0
- package/dist/uiConfig-CQ1W9cUD.js +23 -0
- package/package.json +6 -5
- package/dist/button.css +0 -335
- package/dist/flow-ZK6OBsa3.js +0 -568
- package/dist/incodeModule.css +0 -119
- package/dist/otpInput.css +0 -167
- package/dist/successIcon.css +0 -4
- package/dist/title.css +0 -38
package/dist/flow/styles.css
CHANGED
|
@@ -1,89 +1,4 @@
|
|
|
1
|
-
@import "https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap"
|
|
2
|
-
.IncodeSpinner {
|
|
3
|
-
justify-content: center;
|
|
4
|
-
align-items: center;
|
|
5
|
-
display: flex;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.IncodeSpinner.IncodeSpinnerFullScreen {
|
|
9
|
-
inset: var(--spacing-0, var(--spacing-none, 0px));
|
|
10
|
-
z-index: 50;
|
|
11
|
-
background-color: var(--spinner-surface-overlay);
|
|
12
|
-
opacity: var(--spinner-surface-overlay-opacity, 1);
|
|
13
|
-
position: fixed;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.IncodeSpinnerContent {
|
|
17
|
-
flex-direction: column;
|
|
18
|
-
justify-content: center;
|
|
19
|
-
align-items: center;
|
|
20
|
-
display: flex;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.IncodeSpinnerText {
|
|
24
|
-
text-align: center;
|
|
25
|
-
flex-direction: column;
|
|
26
|
-
align-items: center;
|
|
27
|
-
display: flex;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.IncodeSpinnerTitle {
|
|
31
|
-
color: var(--spinner-text-title);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.IncodeSpinnerSubtitle {
|
|
35
|
-
font-size: var(--text-base, 1rem);
|
|
36
|
-
line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
|
|
37
|
-
color: var(--spinner-text-subtitle);
|
|
38
|
-
}
|
|
39
|
-
/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
|
|
40
|
-
@layer properties {
|
|
41
|
-
@supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
|
42
|
-
*, :before, :after, ::backdrop {
|
|
43
|
-
--tw-font-weight: initial;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.IncodeUnsupportedModule {
|
|
49
|
-
min-height: 100vh;
|
|
50
|
-
padding: var(--spacing-16, var(--spacing-16, 16px));
|
|
51
|
-
flex-direction: column;
|
|
52
|
-
justify-content: center;
|
|
53
|
-
align-items: center;
|
|
54
|
-
display: flex;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.IncodeUnsupportedModuleContent {
|
|
58
|
-
max-width: var(--container-md, 28rem);
|
|
59
|
-
align-items: center;
|
|
60
|
-
gap: var(--spacing-16, var(--spacing-16, 16px));
|
|
61
|
-
text-align: center;
|
|
62
|
-
flex-direction: column;
|
|
63
|
-
display: flex;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.IncodeUnsupportedModuleTitle {
|
|
67
|
-
font-size: var(--text-24, var(--primitive-typography-size-24));
|
|
68
|
-
--tw-font-weight: var(--font-weight-semibold, var(--primitive-typography-weight-semibold));
|
|
69
|
-
font-weight: var(--font-weight-semibold, var(--primitive-typography-weight-semibold));
|
|
70
|
-
color: var(--color-text-body-primary, var(--text-body-primary));
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.IncodeUnsupportedModuleMessage {
|
|
74
|
-
font-size: var(--text-16, var(--primitive-typography-size-16));
|
|
75
|
-
color: var(--color-text-body-secondary, var(--text-body-secondary));
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.IncodeUnsupportedModuleButton {
|
|
79
|
-
margin-top: var(--spacing-8, var(--spacing-8, 8px));
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
@property --tw-font-weight {
|
|
83
|
-
syntax: "*";
|
|
84
|
-
inherits: false
|
|
85
|
-
}
|
|
86
|
-
|
|
1
|
+
@import "https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap";
|
|
87
2
|
|
|
88
3
|
|
|
89
4
|
@layer incode-theme, incode-base, incode-components;
|
|
@@ -123,9 +38,13 @@
|
|
|
123
38
|
--tw-backdrop-saturate: initial;
|
|
124
39
|
--tw-backdrop-sepia: initial;
|
|
125
40
|
--tw-ease: initial;
|
|
126
|
-
--tw-
|
|
127
|
-
--tw-
|
|
41
|
+
--tw-translate-x: 0;
|
|
42
|
+
--tw-translate-y: 0;
|
|
43
|
+
--tw-translate-z: 0;
|
|
128
44
|
--tw-leading: initial;
|
|
45
|
+
--tw-font-weight: initial;
|
|
46
|
+
--tw-tracking: initial;
|
|
47
|
+
--tw-duration: initial;
|
|
129
48
|
}
|
|
130
49
|
}
|
|
131
50
|
}
|
|
@@ -233,6 +152,254 @@
|
|
|
233
152
|
}
|
|
234
153
|
}
|
|
235
154
|
|
|
155
|
+
.IncodeCameraButton {
|
|
156
|
+
justify-content: center;
|
|
157
|
+
align-items: center;
|
|
158
|
+
display: flex;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.IncodeCameraButton .IncodeCameraButtonPath {
|
|
162
|
+
fill: var(--color-border-brand-500, var(--border-brand-500-static));
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.IncodeCameraButton .IncodeCameraButtonBackground {
|
|
166
|
+
fill: var(--color-surface-brand-50, var(--surface-brand-50));
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.IncodeCaptureContainer {
|
|
170
|
+
flex-direction: column;
|
|
171
|
+
flex: 1;
|
|
172
|
+
justify-content: flex-start;
|
|
173
|
+
align-items: center;
|
|
174
|
+
height: 100%;
|
|
175
|
+
display: flex;
|
|
176
|
+
position: relative;
|
|
177
|
+
overflow: hidden;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.IncodeCaptureContainer .IncodeCaptureFrame {
|
|
181
|
+
aspect-ratio: 1;
|
|
182
|
+
border-radius: var(--radius-full, var(--border-radius-full));
|
|
183
|
+
border-style: var(--tw-border-style);
|
|
184
|
+
border-width: 12px;
|
|
185
|
+
border-color: #0000;
|
|
186
|
+
width: 100%;
|
|
187
|
+
max-width: 335px;
|
|
188
|
+
position: relative;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.IncodeCaptureContainer .IncodeCaptureVideoWrapper {
|
|
192
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
193
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
194
|
+
width: calc(100% - 24px);
|
|
195
|
+
height: calc(100% - 24px);
|
|
196
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
197
|
+
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
198
|
+
border-radius: var(--radius-full, var(--border-radius-full));
|
|
199
|
+
background-color: var(--color-white, #fff);
|
|
200
|
+
justify-content: center;
|
|
201
|
+
align-items: center;
|
|
202
|
+
display: flex;
|
|
203
|
+
position: absolute;
|
|
204
|
+
top: 50%;
|
|
205
|
+
left: 50%;
|
|
206
|
+
overflow: hidden;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.IncodeCaptureContainer .IncodeCaptureVideo {
|
|
210
|
+
z-index: 50;
|
|
211
|
+
width: 100%;
|
|
212
|
+
height: 100%;
|
|
213
|
+
position: absolute;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.IncodeCaptureContainer .IncodeCaptureVideoElement {
|
|
217
|
+
object-fit: cover;
|
|
218
|
+
width: 100%;
|
|
219
|
+
height: 100%;
|
|
220
|
+
position: absolute;
|
|
221
|
+
transform: scaleX(-1);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.IncodeCaptureUploadingPage .IncodeCaptureUploadingContainer {
|
|
225
|
+
flex-direction: column;
|
|
226
|
+
flex: 1;
|
|
227
|
+
animation: .4s ease-out fadeInScale;
|
|
228
|
+
display: flex;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.IncodeCaptureUploadingPage .IncodeCaptureUploadingTitle {
|
|
232
|
+
text-align: center;
|
|
233
|
+
font-size: var(--text-2xl, 1.5rem);
|
|
234
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
|
|
235
|
+
--tw-leading: 125%;
|
|
236
|
+
--tw-font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
|
|
237
|
+
line-height: 125%;
|
|
238
|
+
font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
|
|
239
|
+
--tw-tracking: -1px;
|
|
240
|
+
letter-spacing: -1px;
|
|
241
|
+
color: var(--color-text-body-primary, var(--text-body-primary));
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.IncodeCaptureUploadingPage .IncodeCaptureUploadingPrimaryIcon {
|
|
245
|
+
fill: var(--color-spinner-surface-primary, var(--spinner-surface-primary));
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.IncodeCaptureUploadingPage .IncodeCaptureUploadingSecondaryIcon {
|
|
249
|
+
fill: var(--color-spinner-surface-secondary, var(--spinner-surface-secondary));
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.IncodeCaptureSuccessPage .IncodeCaptureSuccessContainer {
|
|
253
|
+
flex-direction: column;
|
|
254
|
+
flex: 1;
|
|
255
|
+
align-items: center;
|
|
256
|
+
display: flex;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.IncodeErrorModalContent {
|
|
260
|
+
inset: var(--spacing-0, var(--spacing-none, 0px));
|
|
261
|
+
top: var(--spacing-0, var(--spacing-none, 0px));
|
|
262
|
+
right: var(--spacing-0, var(--spacing-none, 0px));
|
|
263
|
+
bottom: var(--spacing-0, var(--spacing-none, 0px));
|
|
264
|
+
left: var(--spacing-0, var(--spacing-none, 0px));
|
|
265
|
+
z-index: 50;
|
|
266
|
+
background-color: var(--color-white, #fff);
|
|
267
|
+
justify-content: center;
|
|
268
|
+
align-items: center;
|
|
269
|
+
width: 100%;
|
|
270
|
+
height: 100%;
|
|
271
|
+
display: flex;
|
|
272
|
+
position: fixed;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.IncodeErrorModalContent .IncodeErrorModalContentContainer {
|
|
276
|
+
width: 100%;
|
|
277
|
+
min-width: 320px;
|
|
278
|
+
height: 100%;
|
|
279
|
+
padding-inline: var(--spacing-16, var(--spacing-16, 16px));
|
|
280
|
+
flex-direction: column;
|
|
281
|
+
justify-content: center;
|
|
282
|
+
align-items: center;
|
|
283
|
+
display: flex;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.IncodeErrorModalContent .IncodeErrorModalContentSpacer {
|
|
287
|
+
flex: 1;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.IncodeErrorModalContent .IncodeErrorModalContentIconContainer {
|
|
291
|
+
flex-direction: column;
|
|
292
|
+
flex: 1;
|
|
293
|
+
justify-content: center;
|
|
294
|
+
align-items: center;
|
|
295
|
+
display: flex;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.IncodeErrorModalContent .IncodeErrorModalContentTitle {
|
|
299
|
+
text-align: center;
|
|
300
|
+
font-size: var(--text-2xl, 1.5rem);
|
|
301
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
|
|
302
|
+
--tw-leading: 114%;
|
|
303
|
+
--tw-font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
|
|
304
|
+
line-height: 114%;
|
|
305
|
+
font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
|
|
306
|
+
--tw-tracking: -.5px;
|
|
307
|
+
letter-spacing: -.5px;
|
|
308
|
+
color: var(--color-text-body-primary, var(--text-body-primary));
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.IncodeErrorModalContent .IncodeErrorModalContentDescription {
|
|
312
|
+
text-align: center;
|
|
313
|
+
font-size: var(--text-base, 1rem);
|
|
314
|
+
line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
|
|
315
|
+
--tw-leading: 114%;
|
|
316
|
+
--tw-font-weight: var(--font-weight-medium, var(--primitive-typography-weight-medium));
|
|
317
|
+
line-height: 114%;
|
|
318
|
+
font-weight: var(--font-weight-medium, var(--primitive-typography-weight-medium));
|
|
319
|
+
--tw-tracking: -.5px;
|
|
320
|
+
letter-spacing: -.5px;
|
|
321
|
+
color: var(--color-text-body-secondary, var(--text-body-secondary));
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.IncodeErrorModalContent .IncodeErrorModalContentAttemptsContainer {
|
|
325
|
+
flex-direction: column;
|
|
326
|
+
align-items: center;
|
|
327
|
+
width: 100%;
|
|
328
|
+
display: flex;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.IncodeErrorModalContent .IncodeErrorModalContentAttemptsText {
|
|
332
|
+
text-align: center;
|
|
333
|
+
font-size: var(--text-lg, 1.125rem);
|
|
334
|
+
line-height: var(--tw-leading, var(--text-lg--line-height, calc(1.75 / 1.125)));
|
|
335
|
+
--tw-leading: 114%;
|
|
336
|
+
--tw-font-weight: var(--font-weight-medium, var(--primitive-typography-weight-medium));
|
|
337
|
+
line-height: 114%;
|
|
338
|
+
font-weight: var(--font-weight-medium, var(--primitive-typography-weight-medium));
|
|
339
|
+
--tw-tracking: -.5px;
|
|
340
|
+
letter-spacing: -.5px;
|
|
341
|
+
color: var(--color-text-body-secondary, var(--text-body-secondary));
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.IncodeFaceOutline {
|
|
345
|
+
height: 100%;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.IncodeLoadingBorder {
|
|
349
|
+
aspect-ratio: 1;
|
|
350
|
+
width: 100%;
|
|
351
|
+
max-width: 335px;
|
|
352
|
+
position: absolute;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.IncodeLoadingBorder.IncodeLoadingBorderSpinning {
|
|
356
|
+
animation: var(--animate-spin, spin 1s linear infinite);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.IncodeLoadingBorder .IncodeLoadingBorderPath {
|
|
360
|
+
transition: all 1s ease-in-out;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.IncodeManualCaptureButton {
|
|
364
|
+
align-items: center;
|
|
365
|
+
gap: var(--spacing-16, var(--spacing-16, 16px));
|
|
366
|
+
flex-direction: column;
|
|
367
|
+
max-width: 275px;
|
|
368
|
+
display: flex;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.IncodeManualCaptureButtonText {
|
|
372
|
+
text-align: center;
|
|
373
|
+
font-size: var(--text-base, 1rem);
|
|
374
|
+
line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
|
|
375
|
+
--tw-leading: 1.14;
|
|
376
|
+
--tw-font-weight: var(--font-weight-medium, var(--primitive-typography-weight-medium));
|
|
377
|
+
line-height: 1.14;
|
|
378
|
+
font-weight: var(--font-weight-medium, var(--primitive-typography-weight-medium));
|
|
379
|
+
color: var(--color-text-body-primary, var(--text-body-primary));
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.IncodeManualCaptureButtonButton {
|
|
383
|
+
padding: var(--spacing-0, var(--spacing-none, 0px));
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.IncodeNotification {
|
|
387
|
+
flex-direction: column;
|
|
388
|
+
align-items: center;
|
|
389
|
+
display: flex;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.IncodeNotificationText {
|
|
393
|
+
text-align: center;
|
|
394
|
+
font-size: var(--text-2xl, 1.5rem);
|
|
395
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
|
|
396
|
+
--tw-leading: 1.2;
|
|
397
|
+
--tw-font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
|
|
398
|
+
line-height: 1.2;
|
|
399
|
+
font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
|
|
400
|
+
color: var(--color-text-body-primary, var(--text-body-primary));
|
|
401
|
+
}
|
|
402
|
+
|
|
236
403
|
.IncodePhonePage .IncodePageContent {
|
|
237
404
|
padding-top: var(--spacing-32, var(--spacing-32, 32px));
|
|
238
405
|
padding-bottom: var(--spacing-16, var(--spacing-16, 16px));
|
|
@@ -603,6 +770,146 @@
|
|
|
603
770
|
color: var(--color-input-text-helper-negative, var(--input-text-helper-negative));
|
|
604
771
|
}
|
|
605
772
|
|
|
773
|
+
.IncodeFlowStart {
|
|
774
|
+
width: 100%;
|
|
775
|
+
height: 100%;
|
|
776
|
+
padding-inline: var(--spacing-24, var(--spacing-24, 24px));
|
|
777
|
+
padding-top: var(--spacing-20, var(--spacing-20, 20px));
|
|
778
|
+
padding-bottom: var(--spacing-32, var(--spacing-32, 32px));
|
|
779
|
+
flex-direction: column;
|
|
780
|
+
justify-content: center;
|
|
781
|
+
align-items: center;
|
|
782
|
+
display: flex;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.IncodeFlowStartContent {
|
|
786
|
+
text-align: center;
|
|
787
|
+
flex-direction: column;
|
|
788
|
+
justify-content: space-between;
|
|
789
|
+
align-items: center;
|
|
790
|
+
width: 100%;
|
|
791
|
+
height: 100%;
|
|
792
|
+
display: flex;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.IncodeFlowStartCenterSection {
|
|
796
|
+
flex-direction: column;
|
|
797
|
+
flex: 1;
|
|
798
|
+
justify-content: center;
|
|
799
|
+
align-items: center;
|
|
800
|
+
width: 100%;
|
|
801
|
+
display: flex;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.IncodeFlowStartLogoContainer {
|
|
805
|
+
justify-content: center;
|
|
806
|
+
align-items: center;
|
|
807
|
+
min-width: 100px;
|
|
808
|
+
max-height: 250px;
|
|
809
|
+
display: flex;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.IncodeFlowStartLogo {
|
|
813
|
+
object-fit: contain;
|
|
814
|
+
width: 260px;
|
|
815
|
+
max-width: 100%;
|
|
816
|
+
height: auto;
|
|
817
|
+
max-height: 100%;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
@media screen and (max-width: 767px) {
|
|
821
|
+
.IncodeFlowStartLogo {
|
|
822
|
+
width: 200px;
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.IncodeFlowStartSubtitle {
|
|
827
|
+
color: #20263d;
|
|
828
|
+
text-align: center;
|
|
829
|
+
margin-top: 10px;
|
|
830
|
+
font-size: 1.5rem;
|
|
831
|
+
font-weight: bold;
|
|
832
|
+
line-height: 1.37;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.IncodeFlowStartButton {
|
|
836
|
+
margin-top: auto;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
@media screen and (min-width: 992px) {
|
|
840
|
+
.IncodeFlowStart {
|
|
841
|
+
padding: 5% 20% 15%;
|
|
842
|
+
}
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.IncodeFlowCompleted {
|
|
846
|
+
width: 100%;
|
|
847
|
+
height: 100%;
|
|
848
|
+
padding: var(--spacing-20, var(--spacing-20, 20px));
|
|
849
|
+
flex-direction: column;
|
|
850
|
+
justify-content: center;
|
|
851
|
+
align-items: center;
|
|
852
|
+
display: flex;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.IncodeComponent .IncodeFlowCompleted h1.IncodeFlowCompletedTitle {
|
|
856
|
+
color: #20263d;
|
|
857
|
+
text-align: left;
|
|
858
|
+
width: 100%;
|
|
859
|
+
margin: 20px 0;
|
|
860
|
+
font-size: 2rem;
|
|
861
|
+
font-weight: 700;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.IncodeComponent .IncodeFlowCompleted p.IncodeFlowCompletedSubtitle {
|
|
865
|
+
color: #20263d;
|
|
866
|
+
text-align: left;
|
|
867
|
+
width: 100%;
|
|
868
|
+
margin: 20px 0;
|
|
869
|
+
font-size: 1rem;
|
|
870
|
+
font-weight: 700;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
@media screen and (min-width: 992px) {
|
|
874
|
+
.IncodeComponent .IncodeFlowCompleted h1.IncodeFlowCompletedTitle, .IncodeComponent .IncodeFlowCompleted p.IncodeFlowCompletedSubtitle {
|
|
875
|
+
text-align: center;
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.IncodeUnsupportedModule {
|
|
880
|
+
min-height: 100vh;
|
|
881
|
+
padding: var(--spacing-16, var(--spacing-16, 16px));
|
|
882
|
+
flex-direction: column;
|
|
883
|
+
justify-content: center;
|
|
884
|
+
align-items: center;
|
|
885
|
+
display: flex;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.IncodeUnsupportedModuleContent {
|
|
889
|
+
max-width: var(--container-md, 28rem);
|
|
890
|
+
align-items: center;
|
|
891
|
+
gap: var(--spacing-16, var(--spacing-16, 16px));
|
|
892
|
+
text-align: center;
|
|
893
|
+
flex-direction: column;
|
|
894
|
+
display: flex;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.IncodeUnsupportedModuleTitle {
|
|
898
|
+
font-size: var(--text-24, var(--primitive-typography-size-24));
|
|
899
|
+
--tw-font-weight: var(--font-weight-semibold, var(--primitive-typography-weight-semibold));
|
|
900
|
+
font-weight: var(--font-weight-semibold, var(--primitive-typography-weight-semibold));
|
|
901
|
+
color: var(--color-text-body-primary, var(--text-body-primary));
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.IncodeUnsupportedModuleMessage {
|
|
905
|
+
font-size: var(--text-16, var(--primitive-typography-size-16));
|
|
906
|
+
color: var(--color-text-body-secondary, var(--text-body-secondary));
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.IncodeUnsupportedModuleButton {
|
|
910
|
+
margin-top: var(--spacing-8, var(--spacing-8, 8px));
|
|
911
|
+
}
|
|
912
|
+
|
|
606
913
|
.IncodeFlow {
|
|
607
914
|
width: 100%;
|
|
608
915
|
height: 100%;
|
|
@@ -769,123 +1076,46 @@
|
|
|
769
1076
|
inherits: false
|
|
770
1077
|
}
|
|
771
1078
|
|
|
772
|
-
@property --tw-
|
|
1079
|
+
@property --tw-translate-x {
|
|
773
1080
|
syntax: "*";
|
|
774
|
-
inherits: false
|
|
1081
|
+
inherits: false;
|
|
1082
|
+
initial-value: 0;
|
|
775
1083
|
}
|
|
776
1084
|
|
|
777
|
-
@property --tw-
|
|
1085
|
+
@property --tw-translate-y {
|
|
778
1086
|
syntax: "*";
|
|
779
|
-
inherits: false
|
|
1087
|
+
inherits: false;
|
|
1088
|
+
initial-value: 0;
|
|
780
1089
|
}
|
|
781
1090
|
|
|
782
|
-
@property --tw-
|
|
1091
|
+
@property --tw-translate-z {
|
|
783
1092
|
syntax: "*";
|
|
784
|
-
inherits: false
|
|
785
|
-
|
|
786
|
-
/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
|
|
787
|
-
.IncodeFlowStart {
|
|
788
|
-
width: 100%;
|
|
789
|
-
height: 100%;
|
|
790
|
-
padding-inline: var(--spacing-24, var(--spacing-24, 24px));
|
|
791
|
-
padding-top: var(--spacing-20, var(--spacing-20, 20px));
|
|
792
|
-
padding-bottom: var(--spacing-32, var(--spacing-32, 32px));
|
|
793
|
-
flex-direction: column;
|
|
794
|
-
justify-content: center;
|
|
795
|
-
align-items: center;
|
|
796
|
-
display: flex;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
.IncodeFlowStartContent {
|
|
800
|
-
text-align: center;
|
|
801
|
-
flex-direction: column;
|
|
802
|
-
justify-content: space-between;
|
|
803
|
-
align-items: center;
|
|
804
|
-
width: 100%;
|
|
805
|
-
height: 100%;
|
|
806
|
-
display: flex;
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
.IncodeFlowStartCenterSection {
|
|
810
|
-
flex-direction: column;
|
|
811
|
-
flex: 1;
|
|
812
|
-
justify-content: center;
|
|
813
|
-
align-items: center;
|
|
814
|
-
width: 100%;
|
|
815
|
-
display: flex;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.IncodeFlowStartLogoContainer {
|
|
819
|
-
justify-content: center;
|
|
820
|
-
align-items: center;
|
|
821
|
-
min-width: 100px;
|
|
822
|
-
max-height: 250px;
|
|
823
|
-
display: flex;
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
.IncodeFlowStartLogo {
|
|
827
|
-
object-fit: contain;
|
|
828
|
-
width: 260px;
|
|
829
|
-
max-width: 100%;
|
|
830
|
-
height: auto;
|
|
831
|
-
max-height: 100%;
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
@media screen and (max-width: 767px) {
|
|
835
|
-
.IncodeFlowStartLogo {
|
|
836
|
-
width: 200px;
|
|
837
|
-
}
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
.IncodeFlowStartSubtitle {
|
|
841
|
-
color: #20263d;
|
|
842
|
-
text-align: center;
|
|
843
|
-
margin-top: 10px;
|
|
844
|
-
font-size: 1.5rem;
|
|
845
|
-
font-weight: bold;
|
|
846
|
-
line-height: 1.37;
|
|
1093
|
+
inherits: false;
|
|
1094
|
+
initial-value: 0;
|
|
847
1095
|
}
|
|
848
1096
|
|
|
849
|
-
|
|
850
|
-
|
|
1097
|
+
@property --tw-leading {
|
|
1098
|
+
syntax: "*";
|
|
1099
|
+
inherits: false
|
|
851
1100
|
}
|
|
852
1101
|
|
|
853
|
-
@
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
}
|
|
857
|
-
}
|
|
858
|
-
/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
|
|
859
|
-
.IncodeFlowCompleted {
|
|
860
|
-
width: 100%;
|
|
861
|
-
height: 100%;
|
|
862
|
-
padding: var(--spacing-20, var(--spacing-20, 20px));
|
|
863
|
-
flex-direction: column;
|
|
864
|
-
justify-content: center;
|
|
865
|
-
align-items: center;
|
|
866
|
-
display: flex;
|
|
1102
|
+
@property --tw-font-weight {
|
|
1103
|
+
syntax: "*";
|
|
1104
|
+
inherits: false
|
|
867
1105
|
}
|
|
868
1106
|
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
width: 100%;
|
|
873
|
-
margin: 20px 0;
|
|
874
|
-
font-size: 2rem;
|
|
875
|
-
font-weight: 700;
|
|
1107
|
+
@property --tw-tracking {
|
|
1108
|
+
syntax: "*";
|
|
1109
|
+
inherits: false
|
|
876
1110
|
}
|
|
877
1111
|
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
width: 100%;
|
|
882
|
-
margin: 20px 0;
|
|
883
|
-
font-size: 1rem;
|
|
884
|
-
font-weight: 700;
|
|
1112
|
+
@property --tw-duration {
|
|
1113
|
+
syntax: "*";
|
|
1114
|
+
inherits: false
|
|
885
1115
|
}
|
|
886
1116
|
|
|
887
|
-
@
|
|
888
|
-
|
|
889
|
-
|
|
1117
|
+
@keyframes spin {
|
|
1118
|
+
to {
|
|
1119
|
+
transform: rotate(360deg);
|
|
890
1120
|
}
|
|
891
1121
|
}
|